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

9 lines
101 B
Kotlin

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