From cac3311f1ae6feb73bf6195511f2b4613c8d72b2 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Thu, 1 Mar 2012 05:32:03 +0400 Subject: [PATCH] fix JetDiagnosticsTest j+k --- compiler/testData/diagnostics/tests/j+k/Simple.jet | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/testData/diagnostics/tests/j+k/Simple.jet b/compiler/testData/diagnostics/tests/j+k/Simple.jet index 322ff1fa99b..e698e624164 100644 --- a/compiler/testData/diagnostics/tests/j+k/Simple.jet +++ b/compiler/testData/diagnostics/tests/j+k/Simple.jet @@ -1,9 +1,12 @@ -// FILE: A.java +// FILE: aa/A.java +// +JDK +package aa; -class A { +public class A { void f() { } } // FILE: B.kt +import aa.A fun foo(a: A) = a.f()