a48c728ab ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14
discard "" type TObj = ref object proc check(a: TObj not nil) = echo repr(a) proc doit() = var x : array[0..1, TObj] if x[0] != nil: check(x[0]) doit()