diff options
Diffstat (limited to 'test/bigliteral.myr')
-rw-r--r-- | test/bigliteral.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bigliteral.myr b/test/bigliteral.myr index 5a04ffa..fe1b8f9 100644 --- a/test/bigliteral.myr +++ b/test/bigliteral.myr @@ -1,5 +1,5 @@ use std const main = { - std.put("{}\n", 34359738368 castto(int64)) + std.put("{}\n", (34359738368 : int64)) } |