diff options
author | Araq <rumpf_a@web.de> | 2015-04-11 02:18:09 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-04-11 10:01:09 +0200 |
commit | 65e01c8b687feeef20da1c3c1daded5667c9ff3b (patch) | |
tree | 39b1ac0c512ba5078e4b284872a539254c69cc08 | |
parent | 1406f92a5f79add797574c3871841526477659c0 (diff) | |
download | Nim-65e01c8b687feeef20da1c3c1daded5667c9ff3b.tar.gz |
make test green
-rw-r--r-- | tests/metatype/tautoproc.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/metatype/tautoproc.nim b/tests/metatype/tautoproc.nim index 562f508fc..ef5377096 100644 --- a/tests/metatype/tautoproc.nim +++ b/tests/metatype/tautoproc.nim @@ -1,11 +1,13 @@ discard """ - errormsg: "expression 'generate(builder)' has no type (or is ambiguous)" + output: "empty" """ # bug #898 +import typetraits + proc measureTime(e: auto) = - discard + echo e.type.name proc generate(a: int): void = discard |