2cdfe35e7 ^
6ff8752be ^
7bf98411b ^
1 2
3
4
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
22
23
discard """ file: "tcgbug.nim" output: "success" """ type TObj = object x, y: int PObj = ref TObj proc p(a: PObj) = a.x = 0 proc q(a: var PObj) = a.p() var a: PObj new(a) q(a) echo "success"