Reenable a few tests

This commit is contained in:
Clyybber
2020-07-14 19:33:10 +02:00
parent ddfb7d9877
commit f2b041f168
4 changed files with 7 additions and 10 deletions

View File

@@ -1,6 +1,5 @@
discard """
output: "Key: 12 value: 12Key: 13 value: 13 Key: A value: 12 Key: B value: 13"
disabled: true
"""
# test explicit type instantiation
@@ -14,12 +13,12 @@ proc newDict*[TKey, TValue](): PDict[TKey, TValue] =
new(result)
result.data = @[]
proc add*(d: PDict, k: TKey, v: TValue) =
proc add*(d: PDict, k: d.TKey, v: d.TValue) =
d.data.add((k, v))
#iterator items*(d: PDict): tuple[k: TKey, v: TValue] =
# for k, v in items(d.data): yield (k, v)
iterator items*(d: PDict): tuple[k: d.TKey, v: d.TValue] =
for k, v in items(d.data): yield (k, v)
var d = newDict[int, string]()
d.add(12, "12")

View File

@@ -1,5 +1,5 @@
discard """
disabled: true
output: "10"
"""
# {. noforward: on .}

View File

@@ -1,7 +1,6 @@
discard """
errormsg: "usage of 'disallowIf' is a user-defined error"
errormsg: "usage of 'disallowIf' is an {.error.} defined at tdisallowif.nim(10, 1)"
line: 24
disabled: true
"""
template optZero{x+x}(x: int): int = x*3
@@ -11,7 +10,7 @@ template optSubstr1{x = substr(x, 0, b)}(x: string, b: int) = setlen(x, b+1)
template disallowIf{
if cond: action
else: action2
}(cond: bool, action, action2: stmt) {.error.} = action
}(cond: bool, action, action2: typed) {.error.} = action
var y = 12
echo y+y

View File

@@ -1,7 +1,6 @@
discard """
errormsg: "value expected, but got a type"
errormsg: "invalid type: 'type seq[tuple[title: string, body: string]]' for var"
line: 7
disabled: true
"""
proc crashAndBurn() =