From c03190910cebe45aab4ae979ae5bf54bebf5a821 Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Mon, 10 Sep 2012 18:06:29 +0400 Subject: [PATCH] test change returned check for unimported reference to test --- compiler/testData/diagnostics/tests/NamespaceQualified.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/tests/NamespaceQualified.kt b/compiler/testData/diagnostics/tests/NamespaceQualified.kt index c3b3e44c2db..aa962dbcc59 100644 --- a/compiler/testData/diagnostics/tests/NamespaceQualified.kt +++ b/compiler/testData/diagnostics/tests/NamespaceQualified.kt @@ -5,7 +5,7 @@ package foobar.a import java.* val a : util.List? = null - val a1 : List? = null + val a1 : ArrayList? = null // FILE: b.kt package foobar