test: 修改 Demo13 以支持新版语法(移除对字面量 D 的支持)

This commit is contained in:
zhangxun 2025-07-18 11:16:08 +08:00
parent 3dd06261e2
commit 6fb24f3f2f

View File

@ -7,34 +7,34 @@ module: Main
5 == 7b
5 == 7l
5 == 7f
5 == 7d
5 == 7.0
5b == 5b
5b == 5s
5b == 5l
5b == 5f
5b == 5d
5b == 5.0
5s == 5s
5s == 5l
5s == 5f
5s == 5d
5s == 5.0
5l == 5l
5l == 5f
5l == 5d
5l == 5.0
5f == 5f
5f == 5d
5f == 5.0
5d == 5d
5.0 == 5.0
declare b: byte = 8b
declare s: short = 8s
declare i: int = 8
declare l: long = 8l
declare f: float = 8f
declare d: double = 8d
declare d: double = 8
b == b
b == s