mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
13 lines
180 B
Nim
13 lines
180 B
Nim
discard """
|
|
file: "tsimtych.nim"
|
|
line: 10
|
|
errormsg: "type mismatch: got (bool) but expected \'string\'"
|
|
"""
|
|
# Test 2
|
|
# Simple type checking
|
|
|
|
var a: string
|
|
a = false #ERROR
|
|
|
|
|