mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 03:35:02 -07:00
22ea2900d0
This avoids a heap-use-after-free ASAN error. Close #3334
15 lines
337 B
Lua
15 lines
337 B
Lua
local helpers = require('test.functional.helpers')
|
|
local execute, eq, clear = helpers.execute, helpers.eq, helpers.clear
|
|
|
|
describe(':qa', function()
|
|
before_each(function()
|
|
clear('qa')
|
|
end)
|
|
|
|
it('verify #3334', function()
|
|
-- just testing if 'qa' passed as a program argument wont result in memory
|
|
-- errors
|
|
end)
|
|
end)
|
|
|