summaryrefslogtreecommitdiff
path: root/src/testdir/test3.ok
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-10-04 18:03:47 +0200
committerBram Moolenaar <Bram@vim.org>2011-10-04 18:03:47 +0200
commite79d1535cf1933729bb7352123c12cb91fd2ce0c (patch)
tree73e345a51d5319368836380dceda3553c752a890 /src/testdir/test3.ok
parentaa0e80471f663385a143af419708067b1ea80de7 (diff)
downloadvim-git-e79d1535cf1933729bb7352123c12cb91fd2ce0c.tar.gz
updated for version 7.3.332v7.3.332
Problem: Indent after "public:" is not increased in C++ code. (Lech Lorens) Solution: Check for namespace after the regular checks. (partly by Martin Gieseking)
Diffstat (limited to 'src/testdir/test3.ok')
-rw-r--r--src/testdir/test3.ok10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/test3.ok b/src/testdir/test3.ok
index 396230744..c95b18846 100644
--- a/src/testdir/test3.ok
+++ b/src/testdir/test3.ok
@@ -1190,6 +1190,16 @@ protected:
};
+class Foo : public Bar
+{
+ public:
+ virtual void method1(void) = 0;
+ virtual void method2(int arg1,
+ int arg2,
+ int arg3) = 0;
+};
+
+
void
foo()
{