Combine some of the lexer tests into a single file

This commit is contained in:
Oscar Nihlgård
2018-06-05 21:05:13 +02:00
parent fd28236368
commit c69b88688f
4 changed files with 27 additions and 31 deletions

View File

@@ -1,12 +0,0 @@
discard """
file: "thexlit.nim"
output: "equal"
"""
var t=0x950412DE
if t==0x950412DE:
echo "equal"
else:
echo "not equal"

View File

@@ -1,8 +0,0 @@
type
TArray = array[0x0012..0x0013, int]
var a: TArray
echo a[0x0012] #OUT 0

View File

@@ -0,0 +1,27 @@
discard """
action: run
output: "equal"
"""
var t=0x950412DE
if t==0x950412DE:
echo "equal"
else:
echo "not equal"
type
TArray = array[0x0012..0x0013, int]
var a: TArray
doAssert a[0x0012] == 0
# #7884
type Obj = object
ö: int
let o = Obj(ö: 1)
doAssert o.ö == 1

View File

@@ -1,11 +0,0 @@
discard """
action: run
"""
# #7884
type Obj = object
ö: int
let o = Obj(ö: 1)
doAssert o.ö == 1