diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-20 14:35:21 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-20 14:35:21 (GMT) |
commit | 1d8e7e9411f62a60340b1edba6c55a8e7548a93b (patch) | |
tree | 932198ce265b630740c8340c0e2d0a8a723919bc /Tests/SetLang/bar.c | |
parent | 5c0a340a9e0146841b14065497373cb9a79d5768 (diff) | |
download | CMake-1d8e7e9411f62a60340b1edba6c55a8e7548a93b.zip CMake-1d8e7e9411f62a60340b1edba6c55a8e7548a93b.tar.gz CMake-1d8e7e9411f62a60340b1edba6c55a8e7548a93b.tar.bz2 |
BUG: fix for bug 4423 set language fixes
Diffstat (limited to 'Tests/SetLang/bar.c')
-rw-r--r-- | Tests/SetLang/bar.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/SetLang/bar.c b/Tests/SetLang/bar.c new file mode 100644 index 0000000..f59c318 --- /dev/null +++ b/Tests/SetLang/bar.c @@ -0,0 +1,21 @@ +#include <stdio.h> + +int foo(); +class A +{ +public: + A() {this->i = foo();} + int i; +}; + +int main() +{ + A a; + if(a.i == 21) + { + printf("passed foo is 21\n"); + return 0; + } + printf("Failed foo is not 21\n"); + return -1; +} |