diff options
Diffstat (limited to 'tests/ccgbugs/trecursive_closure.nim')
-rw-r--r-- | tests/ccgbugs/trecursive_closure.nim | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/ccgbugs/trecursive_closure.nim b/tests/ccgbugs/trecursive_closure.nim deleted file mode 100644 index f64382a8c..000000000 --- a/tests/ccgbugs/trecursive_closure.nim +++ /dev/null @@ -1,14 +0,0 @@ -# bug #2233 -type MalType = object - fun: proc: MalType - -proc f(x: proc: MalType) = - discard x() - -f(nil) - -# bug #2823 - -type A = object #of RootObj <-- Uncomment this to get no errors - test: proc(i: A): bool -var a: proc(i: A): bool # Or comment this line to get no errors |