main.cc 215 B

1234567891011
  1. extern "C" int cfunc();
  2. void func() {
  3. std::cout << "This is a function that fails to compile if iostream is not included."
  4. << std::endl;
  5. }
  6. int main(int argc, char **argv) {
  7. return cfunc();
  8. }