diff options
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/t5167_5.nim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/errmsgs/t5167_5.nim b/tests/errmsgs/t5167_5.nim index ccd9cc0a5..a9e260845 100644 --- a/tests/errmsgs/t5167_5.nim +++ b/tests/errmsgs/t5167_5.nim @@ -2,13 +2,14 @@ discard """ cmd: "nim check $file" errormsg: "'t' has unspecified generic parameters" nimout: ''' -t5167_5.nim(20, 9) Error: 't' has unspecified generic parameters +t5167_5.nim(10, 16) Error: expression 'system' has no type (or is ambiguous) +t5167_5.nim(21, 9) Error: 't' has unspecified generic parameters ''' """ +# issue #11942 +discard newSeq[system]() - - - +# issue #5167 template t[B]() = echo "foo1" @@ -22,4 +23,3 @@ bar t let y = m bar m - |