summary refs log tree commit diff stats
path: root/tests/cpp/tthread_createthread.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cpp/tthread_createthread.nim')
-rw-r--r--tests/cpp/tthread_createthread.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpp/tthread_createthread.nim b/tests/cpp/tthread_createthread.nim
index 2c239005f..363136e9d 100644
--- a/tests/cpp/tthread_createthread.nim
+++ b/tests/cpp/tthread_createthread.nim
@@ -6,7 +6,7 @@ proc threadMain(a: int) {.thread.} =
     discard
 
 proc main() =
-    var thread: TThread[int]
+    var thread: Thread[int]
 
     thread.createThread(threadMain, 0)
     thread.joinThreads()