mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
8 lines
115 B
Nim
8 lines
115 B
Nim
|
|
import mlt
|
|
# bug #4564
|
|
type Bar* = ref object of RootObj
|
|
proc foo(a: Bar): int = 0
|
|
var a: Bar
|
|
let b = a.foo() > 0
|