diff options
Diffstat (limited to 'Tests/SetLang/bar.c')
-rw-r--r-- | Tests/SetLang/bar.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Tests/SetLang/bar.c b/Tests/SetLang/bar.c index f59c318b18..b934356fa1 100644 --- a/Tests/SetLang/bar.c +++ b/Tests/SetLang/bar.c @@ -4,18 +4,17 @@ int foo(); class A { public: - A() {this->i = foo();} + A() { this->i = foo(); } int i; }; int main() { A a; - if(a.i == 21) - { + if (a.i == 21) { printf("passed foo is 21\n"); return 0; - } + } printf("Failed foo is not 21\n"); return -1; } |