blob: 74a6ad4c0758570c4d177d675123d9a75fb74fd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
|