8 lines
No EOL
190 B
C++
8 lines
No EOL
190 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "this will never compile" << std::endl
|
|
// missing semicolon above
|
|
undefined_function();
|
|
return 0
|
|
// missing semicolon again
|