shithub
fortrangoingonforty
/
facsimile
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
facsimile
Public
Watch
0
Fork
0
Star
0
facsimile
/
tests
/
lsp
/
sample_errors.c
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
}