Files
Nim/tests/objects/tobjloop.nim
2015-04-11 10:01:12 +02:00

16 lines
222 B
Nim

discard """
output: "is Nil false"
"""
# bug #1658
type
Loop* = ref object
onBeforeSelect*: proc (L: Loop)
var L: Loop
new L
L.onBeforeSelect = proc (bar: Loop) =
echo "is Nil ", bar.isNil
L.onBeforeSelect(L)