cmake/Tests/Simple/simpleWe.cpp

15 lines
177 B
C++
Raw Normal View History

#include <stdio.h>
2013-03-16 19:13:01 +02:00
class Foo
{
public:
2016-07-09 11:21:54 +02:00
Foo() { printf("This one has nonstandard extension\n"); }
int getnum() { return 0; }
};
int bar()
{
Foo f;
return f.getnum();
}