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