diff options
| author | ckelsel <ckelsel@hotmail.com> | 2017-08-03 08:30:53 +0800 |
|---|---|---|
| committer | ckelsel <ckelsel@hotmail.com> | 2017-08-03 08:30:53 +0800 |
| commit | 9b3ed62b5a841c24f798f1fcc4adb3cfe7667b5b (patch) | |
| tree | 380648ddb41939724a40eccd780312640203ca01 /src/nvim/testdir | |
| parent | b16a4ad49a010a8a2f1019394396fee5facbbd16 (diff) | |
| parent | eb40b7ec404e8651137513ced43d503bc6656f17 (diff) | |
| download | rneovim-9b3ed62b5a841c24f798f1fcc4adb3cfe7667b5b.tar.gz rneovim-9b3ed62b5a841c24f798f1fcc4adb3cfe7667b5b.tar.bz2 rneovim-9b3ed62b5a841c24f798f1fcc4adb3cfe7667b5b.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index c3bfae1b7b..09f4b942ad 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -232,3 +232,10 @@ func Test_paste_in_cmdline() call assert_equal('"aaa a;b-c*d bbb', @:) bwipe! endfunc + +func Test_illegal_address() + new + 2;'( + 2;') + quit +endfunc |