Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallWithThisReceiverInNestedClass1.kt
2014-11-11 14:42:45 +03:00

11 lines
190 B
Kotlin

// "Create class 'Foo'" "true"
class A<T>(val n: T) {
inner class B<U>(val m: U) {
inner class Foo(i: Int, s: String) {
}
fun test() = this.Foo(2, "2")
}
}