diff --git a/compiler/testData/diagnostics/tests/j+k/kt2763.kt b/compiler/testData/diagnostics/tests/j+k/kt2763.kt deleted file mode 100644 index 2e06a70d2c8..00000000000 --- a/compiler/testData/diagnostics/tests/j+k/kt2763.kt +++ /dev/null @@ -1,15 +0,0 @@ -//FILE:Main.kt -fun main(args : Array) { - val inner = Nested().inner() - - println(inner.toString()) -} - -//FILE:Nested.java -public class Nested { - public class Inner$ {} - - public Inner$ inner() { - return new Inner$(); - } -}