summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/createFromUsage/createClass/callExpression/typeArguments/javaClassMember.after.kt
blob: f62407f96f9607c42394f08596cc6404cb3ae534 (plain)
1
2
3
4
5
6
// "Create class 'Foo'" "true"
// ERROR: Unresolved reference: Foo

class A<T> internal constructor(val b: B<T>) {
    internal fun test() = B.Foo<Int, String>(2, "2")
}