blob: 43212032939c5e882957a8ba0b7c39b73eb43f35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
extern "C" int cfunc();
void func(void) {
std::cout << "This is a function that fails to compile if iostream is not included."
<< std::endl;
}
int main(void) {
return cfunc();
}
|