TZIVI-254: IVI needs a newer version of cmake
[profile/ivi/cmake.git] / Tests / Simple / simpleWe.cpp
1 #include <stdio.h>
2
3 class Foo 
4 {
5 public:
6   Foo()
7     {
8       printf("This one has nonstandard extension\n");
9     }
10   int getnum() { return 0; }
11 };
12
13 int bar()
14 {
15   Foo f;
16   return f.getnum();
17 }