master
1export fn a() void {
2    const x: ?u8 = 256;
3    _ = x;
4}
5
6// error
7//
8// 2:20: error: expected type '?u8', found 'comptime_int'
9// 2:20: note: type 'u8' cannot represent value '256'