diff options
Diffstat (limited to 'test/compile_errors.zig')
| -rw-r--r-- | test/compile_errors.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compile_errors.zig b/test/compile_errors.zig index 27a5432fdd..e1e3f715c2 100644 --- a/test/compile_errors.zig +++ b/test/compile_errors.zig @@ -4774,7 +4774,7 @@ pub fn addCases(cases: *tests.CompileErrorContext) void { cases.add( "float literal too large error", \\comptime { - \\ const a = 0x1.0p16384; + \\ const a = 0x1.0p18495; \\} , "tmp.zig:2:15: error: float literal out of range of any type", @@ -4783,7 +4783,7 @@ pub fn addCases(cases: *tests.CompileErrorContext) void { cases.add( "float literal too small error (denormal)", \\comptime { - \\ const a = 0x1.0p-16384; + \\ const a = 0x1.0p-19000; \\} , "tmp.zig:2:15: error: float literal out of range of any type", |
