cmake/Tests/Simple/simpleWe.cpp

18 lines
191 B
C++
Raw Normal View History

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