From 3098723406dae99de72935dbd4008e9adf8aa2a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven=20Sch=C3=A4fer?= Date: Fri, 27 Sep 2019 13:21:56 +0200 Subject: [PATCH] Minor: Fix outdated test --- .../testData/codegen/box/reflection/mapping/constructor.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/compiler/testData/codegen/box/reflection/mapping/constructor.kt b/compiler/testData/codegen/box/reflection/mapping/constructor.kt index 64dd0c6caaf..ab53ef509ab 100644 --- a/compiler/testData/codegen/box/reflection/mapping/constructor.kt +++ b/compiler/testData/codegen/box/reflection/mapping/constructor.kt @@ -27,11 +27,7 @@ fun check(f: KFunction) { fun box(): String { check(::K) - - // Workaround KT-8596 - val nested = K::Nested - check(nested) - + check(K::Nested) check(K::Inner) check(::Secondary)