Test for KT-2763
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
//FILE:Main.kt
|
||||
fun main(args : Array<String>) {
|
||||
val inner = Nested().inner()
|
||||
|
||||
println(inner.toString())
|
||||
}
|
||||
|
||||
//FILE:Nested.java
|
||||
public class Nested {
|
||||
public class Inner$ {}
|
||||
|
||||
public Inner$ inner() {
|
||||
return new Inner$();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user