summary refs log tree commit diff stats
path: root/tests/objects/tobjloop.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/objects/tobjloop.nim')
-rw-r--r--tests/objects/tobjloop.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/objects/tobjloop.nim b/tests/objects/tobjloop.nim
deleted file mode 100644
index 9fea1e2fb..000000000
--- a/tests/objects/tobjloop.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-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)