summaryrefslogtreecommitdiffstats
path: root/Tests/SetLang/bar.c
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-20 14:35:21 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-20 14:35:21 (GMT)
commit1d8e7e9411f62a60340b1edba6c55a8e7548a93b (patch)
tree932198ce265b630740c8340c0e2d0a8a723919bc /Tests/SetLang/bar.c
parent5c0a340a9e0146841b14065497373cb9a79d5768 (diff)
downloadCMake-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.c21
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;
+}