diff options
author | James McCoy <jamessan@jamessan.com> | 2017-08-25 11:21:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-25 11:21:36 -0400 |
commit | 46a4099dfbc5066969f334b42bc5d92b1384db32 (patch) | |
tree | 60b63d8605647ca5ad79062a4224794b5806ea0f /test/functional/legacy/003_cindent_spec.lua | |
parent | 0f2873ce99437a0267eb777201f2e98f22757c2d (diff) | |
parent | d2595ba1c4491a31d18211050e1abe86ea5379d3 (diff) | |
download | rneovim-46a4099dfbc5066969f334b42bc5d92b1384db32.tar.gz rneovim-46a4099dfbc5066969f334b42bc5d92b1384db32.tar.bz2 rneovim-46a4099dfbc5066969f334b42bc5d92b1384db32.zip |
Merge pull request #7192 from llorens/vim-8.0.0092
vim-patch:8.0.0092
Diffstat (limited to 'test/functional/legacy/003_cindent_spec.lua')
-rw-r--r-- | test/functional/legacy/003_cindent_spec.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/functional/legacy/003_cindent_spec.lua b/test/functional/legacy/003_cindent_spec.lua index 27835fea28..0cc4d298b7 100644 --- a/test/functional/legacy/003_cindent_spec.lua +++ b/test/functional/legacy/003_cindent_spec.lua @@ -3915,6 +3915,26 @@ describe('cindent', function() { 111111111111111111; } + namespace test::cpp17 + { + 111111111111111111; + } + namespace ::incorrectcpp17 + { + 111111111111111111; + } + namespace test::incorrectcpp17:: + { + 111111111111111111; + } + namespace test:incorrectcpp17 + { + 111111111111111111; + } + namespace test:::incorrectcpp17 + { + 111111111111111111; + } namespace{ 111111111111111111; } @@ -3986,6 +4006,26 @@ describe('cindent', function() { 111111111111111111; } + namespace test::cpp17 + { + 111111111111111111; + } + namespace ::incorrectcpp17 + { + 111111111111111111; + } + namespace test::incorrectcpp17:: + { + 111111111111111111; + } + namespace test:incorrectcpp17 + { + 111111111111111111; + } + namespace test:::incorrectcpp17 + { + 111111111111111111; + } namespace{ 111111111111111111; } |