From 45d1e55e72aea9acfcf1a6fb7061779a243d7921 Mon Sep 17 00:00:00 2001 From: Clyybber Date: Fri, 19 Jun 2020 14:56:38 +0200 Subject: Add testcases for #11811 and #14315 (#14726) * Add testcase for #11811 * Add testcase for #14315 --- tests/destructor/tdestructor.nim | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'tests/destructor/tdestructor.nim') diff --git a/tests/destructor/tdestructor.nim b/tests/destructor/tdestructor.nim index b6d60323c..9fd47fe00 100644 --- a/tests/destructor/tdestructor.nim +++ b/tests/destructor/tdestructor.nim @@ -154,4 +154,14 @@ proc caseobj_test_sink: TCaseObj = echo "---" -discard caseobj_test_sink() \ No newline at end of file +discard caseobj_test_sink() + +# issue #14315 + +type Vector*[T] = object + x1: int + # x2: T # uncomment will remove error + +# proc `=destroy`*(x: var Vector[int]) = discard # this will remove error +proc `=destroy`*[T](x: var Vector[T]) = discard +var a: Vector[int] # Error: unresolved generic parameter -- cgit 1.4.1-2-gfad0