STYLE: Nightly Version update
[cmake.git] / Tests / Simple / simpleWe.cpp
blob859e07c0660d4f2df62850ac172c1c4b3c2eb192
1 #include <stdio.h>
3 class Foo
5 public:
6 Foo()
8 printf("This one has nonstandard extension\n");
10 int getnum() { return 0; }
13 int bar()
15 Foo f;
16 return f.getnum();