mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
16 lines
222 B
Nim
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)
|