made test green

This commit is contained in:
Andreas Rumpf
2016-01-05 10:19:36 +01:00
parent 290b7e117e
commit 164ebb6762

View File

@@ -6,7 +6,7 @@ type
proc pr(T: typedesc[Base]) = echo "proc " & T.name
method me(T: typedesc[Base]) = echo "method " & T.name
iterator it(T: typedesc[Base]) = yield "yield " & T.name
iterator it(T: typedesc[Base]): auto = yield "yield " & T.name
Base.pr
Child.pr