CMake/Tests/Simple/simpleWe.cpp

18 lines
192 B
C++
Raw Normal View History

2003-03-17 19:29:22 +00:00
#include <stdio.h>
class Foo
{
public:
Foo()
{
printf("This one has nonstandard extension\n");
}
2004-04-30 21:28:54 +00:00
int getnum() { return 0; }
2003-03-17 19:29:22 +00:00
};
int bar()
{
Foo f;
2004-04-30 21:28:54 +00:00
return f.getnum();
2003-03-17 19:29:22 +00:00
}