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()
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144