diff options
Diffstat (limited to 'tests/errmsgs/tconceptconstraint.nim')
-rw-r--r-- | tests/errmsgs/tconceptconstraint.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/errmsgs/tconceptconstraint.nim b/tests/errmsgs/tconceptconstraint.nim index c1f0b94eb..9ab1708c7 100644 --- a/tests/errmsgs/tconceptconstraint.nim +++ b/tests/errmsgs/tconceptconstraint.nim @@ -2,15 +2,15 @@ discard """ errormsg: "cannot instantiate B" line: 20 nimout: ''' -got: (type string) -but expected: (T: A) +got: <type string> +but expected: <T: A> ''' """ type A = concept c advance(c) - + B[T: A] = object child: ref B[T] |