diff options
Diffstat (limited to 'src/testdir/test3.ok')
-rw-r--r-- | src/testdir/test3.ok | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/src/testdir/test3.ok b/src/testdir/test3.ok index b197a28e0..2c7fd17f5 100644 --- a/src/testdir/test3.ok +++ b/src/testdir/test3.ok @@ -618,7 +618,7 @@ Constructor::Constructor(int a, Constructor::Constructor(int a, int b ) /*x*/ : /*x*/ BaseClass(a), - member(b) + member(b) { } @@ -651,7 +651,7 @@ class CAbc : }; class CAbc : public BaseClass1, - protected BaseClass2 + protected BaseClass2 { }; @@ -730,6 +730,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 */ @@ -1070,6 +1095,16 @@ protected: }; + void +foo() +{ + if (a) + { + } else + asdf; +} + + { averylongfunctionnamelongfunctionnameaverylongfunctionname()->asd( asdasdf, |