prog.cc 184 B

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