diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-12-09 13:47:03 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:24 +0100 |
commit | ac785b06236dbc228a3b755c11bb3b1330ccc3ab (patch) | |
tree | 8e96059a7b21e3fbc7582983a6330c6656e395f4 /tests/pragmas | |
parent | 46820b94a634f70f805ab033703c225182564731 (diff) | |
download | Nim-ac785b06236dbc228a3b755c11bb3b1330ccc3ab.tar.gz |
testament: joinable is now an explicit concept of a test spec
Diffstat (limited to 'tests/pragmas')
-rw-r--r-- | tests/pragmas/tused.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/pragmas/tused.nim b/tests/pragmas/tused.nim index dce854146..67a039d8a 100644 --- a/tests/pragmas/tused.nim +++ b/tests/pragmas/tused.nim @@ -4,8 +4,10 @@ compile start tused.nim(15, 8) Hint: 'tused.echoSub(a: int, b: int)[declared in tused.nim(15, 7)]' is declared but not used [XDeclaredButNotUsed] compile end''' output: "8\n8" + joinable: false """ +# not joinable because paths in nimout differ when imported static: echo "compile start" |