diff options
Diffstat (limited to 'tests/threads/tthreadanalysis.nim')
-rw-r--r-- | tests/threads/tthreadanalysis.nim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/threads/tthreadanalysis.nim b/tests/threads/tthreadanalysis.nim index 8aacc71d1..7fc3593c8 100644 --- a/tests/threads/tthreadanalysis.nim +++ b/tests/threads/tthreadanalysis.nim @@ -1,8 +1,6 @@ discard """ - disabled: yes - outputsub: "101" errormsg: "'threadFunc' is not GC-safe" - line: 39 + line: 38 cmd: "nim $target --hints:on --threads:on $options $file" """ @@ -15,7 +13,7 @@ proc doNothing() = discard type PNode = ref TNode - TNode = object {.pure.} + TNode {.pure.} = object le, ri: PNode data: string |