summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-11-21 11:27:24 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-11-21 11:27:35 +0100
commitcae5e33a4a66406813769361233438c7d2df6009 (patch)
treebdba5c64996a0bec5ba764d98e26fb11e94b65d3 /tests
parent58187f212067beff458e76d7c819750a9cfa100c (diff)
downloadNim-cae5e33a4a66406813769361233438c7d2df6009.tar.gz
language change: 'generic' and 'atomic' are not keywords anymore
Diffstat (limited to 'tests')
-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) =