diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-13 20:37:35 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-13 20:37:35 +0000 |
commit | 7fc904b610d5739dd7b72fb2f6b0e4b330c97179 (patch) | |
tree | a7ea75d0ab26a753f13949e25e08e2c875b37d69 /src/testdir/test3.in | |
parent | 18144c84231aee36ae1d11b74941c9b318f1706a (diff) | |
download | vim-git-7fc904b610d5739dd7b72fb2f6b0e4b330c97179.tar.gz |
updated for version 7.0d03v7.0d03
Diffstat (limited to 'src/testdir/test3.in')
-rw-r--r-- | src/testdir/test3.in | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/testdir/test3.in b/src/testdir/test3.in index 51ad72095..898311834 100644 --- a/src/testdir/test3.in +++ b/src/testdir/test3.in @@ -742,6 +742,31 @@ int main(void) next_line_of_code(); } +barry() +{ + Foo::Foo (int one, + int two) + : something(4) + {} +} + +barry() +{ + Foo::Foo (int one, int two) + : something(4) + {} +} + +Constructor::Constructor(int a, + int b + ) : + BaseClass(a, + b, + c), + mMember(b) +{ +} + /* end of AUTO */ STARTTEST @@ -1189,6 +1214,20 @@ protected: }; STARTTEST +:set cino=+20 +2kdd]]=][ +ENDTEST + + void +foo() +{ + if (a) + { + } else + asdf; +} + +STARTTEST :set cino=(0,W2s 2kdd]]=][ ENDTEST |