summary refs log tree commit diff stats
path: root/tests/concepts/t1128.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/concepts/t1128.nim')
-rw-r--r--tests/concepts/t1128.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/concepts/t1128.nim b/tests/concepts/t1128.nim
index 7f7525a13..69a2fa9b7 100644
--- a/tests/concepts/t1128.nim
+++ b/tests/concepts/t1128.nim
@@ -4,8 +4,8 @@ discard """
 
 type
   TFooContainer[T] = object
-  
-  TContainer[T] = generic var c
+
+  TContainer[T] = concept var c
     foo(c, T)
 
 proc foo[T](c: var TFooContainer[T], val: T) =