simpleWe.cpp 191 B

1234567891011121314151617
  1. #include <stdio.h>
  2. class Foo
  3. {
  4. public:
  5. Foo()
  6. {
  7. printf("This one has nonstandard extension\n");
  8. }
  9. int getnum() { return 0; }
  10. };
  11. int bar()
  12. {
  13. Foo f;
  14. return f.getnum();
  15. }