simpleWe.cpp 154 B

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