diff options
Diffstat (limited to 'tests/pragmas/tused.nim')
-rw-r--r-- | tests/pragmas/tused.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/pragmas/tused.nim b/tests/pragmas/tused.nim index dce854146..7616c1215 100644 --- a/tests/pragmas/tused.nim +++ b/tests/pragmas/tused.nim @@ -1,11 +1,13 @@ discard """ nimout: ''' 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] +tused.nim(17, 8) Hint: 'tused.echoSub(a: int, b: int)[declared in tused.nim(17, 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" |