From 992d84d9208c3563de5d2be74fd263d11876e5a9 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Wed, 7 Nov 2012 18:16:11 +0400 Subject: [PATCH] Fixed IsReified diagnostic test. Now it really checks for reified type. --- compiler/testData/diagnostics/tests/cast/IsReified.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/compiler/testData/diagnostics/tests/cast/IsReified.kt b/compiler/testData/diagnostics/tests/cast/IsReified.kt index 12b1132dadc..22106795e61 100644 --- a/compiler/testData/diagnostics/tests/cast/IsReified.kt +++ b/compiler/testData/diagnostics/tests/cast/IsReified.kt @@ -1,3 +1 @@ -class MyList - -fun ff(a: Any) = a is MyList \ No newline at end of file +fun ff(a: Any) = a is Array \ No newline at end of file