diff options
Diffstat (limited to 'tests/destructor/tsimpleclosure.nim')
-rw-r--r-- | tests/destructor/tsimpleclosure.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/destructor/tsimpleclosure.nim b/tests/destructor/tsimpleclosure.nim index c6d25d0b6..43b5cb2b6 100644 --- a/tests/destructor/tsimpleclosure.nim +++ b/tests/destructor/tsimpleclosure.nim @@ -2,6 +2,9 @@ discard """ cmd: '''nim c --newruntime $file''' output: '''a b 70 +hello +hello +hello 2 2 alloc/dealloc pairs: 0''' """ @@ -26,5 +29,20 @@ proc wrap = foo fIt wrap() + +# bug #11533 +proc say = echo "hello" + +# Error: internal error: genAssignment: tyNil +var err0: proc() = say +err0() + +var ok0: proc() +ok0 = say +ok0() + +var ok1 = say +ok1() + let (a, d) = allocCounters() discard cprintf("%ld %ld alloc/dealloc pairs: %ld\n", a, d, system.allocs) |