mirror of
https://github.com/harivansh-afk/cp.nvim.git
synced 2026-04-17 15:04:52 +00:00
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
|