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

13 lines
135 B
Kotlin

// "Create class 'Foo'" "true"
class A<T>(val n: T) {
inner class Foo(i: Int) {
}
}
fun test() {
val a = A(1).Foo(2)
}