mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
14 lines
179 B
Nim
14 lines
179 B
Nim
discard """
|
|
errormsg: "type mismatch"
|
|
line: 13
|
|
"""
|
|
{.experimental: "notnil".}
|
|
type
|
|
PObj = ref TObj not nil
|
|
TObj = object
|
|
x: int
|
|
|
|
proc q2(x: string) = discard
|
|
|
|
q2(nil)
|