blob: afc17986694009f2a27546f22a79ee38acb672b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
export fn entry() void {
comptime {}
var good = {};
comptime ({})
var bad = {};
_ = good;
_ = bad;
}
// error
// backend=stage2
// target=native
//
// :4:18: error: expected ';' after statement
|