mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
11 lines
178 B
Nim
11 lines
178 B
Nim
discard """
|
|
errormsg: "type mismatch: got <bool> but expected \'string\'"
|
|
file: "tsimtych.nim"
|
|
line: 10
|
|
"""
|
|
# Test 2
|
|
# Simple type checking
|
|
|
|
var a: string
|
|
a = false #ERROR
|