blob: 5475bfff68c03918fd91cb8068137ca46a5d208a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
extern printf = (*i64, varargs) => i64;
let main = () => i64 {
let x = !(1 == 1);
if !x {
printf("Condition\n");
};
return 0;
};
/*
Expected stdout:
Condition
Expected return: 0
*/
|