blob: 3c2071523922fcb49fe04a56270d0a1dea8d4e91 (
plain)
1
2
3
4
5
6
7
8
9
10
|
export fn entry() void {
const f: comptime_float = @import("zon/nan.zon");
_ = f;
}
// error
// imports=zon/nan.zon
//
// nan.zon:1:1: error: expected type 'comptime_float'
// tmp.zig:2:39: note: imported here
|