summary refs log tree commit diff stats
path: root/tests/template/twrongsymkind.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template/twrongsymkind.nim')
-rw-r--r--tests/template/twrongsymkind.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template/twrongsymkind.nim b/tests/template/twrongsymkind.nim
index be3d8c652..5fa618914 100644
--- a/tests/template/twrongsymkind.nim
+++ b/tests/template/twrongsymkind.nim
@@ -9,7 +9,7 @@ type
   MyData = object
       x: int
 
-template newDataWindow(data: ref MyData): stmt =
+template newDataWindow(data: ref MyData): untyped =
     proc testProc(data: ref MyData) =
         echo "Hello, ", data.x
     testProc(data)