C · 202 bytes Raw Blame History
1 #include <stdio.h>
2
3 int main() {
4 printf("Hello, world!\n")
5 // Missing semicolon above - should trigger diagnostic
6
7 int x = 5;
8 int y = 10
9 // Another missing semicolon
10
11 return 0;
12 }