summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/createFromUsage/createFunction/call/typeArguments/javaClassMemberPartialSubstitution.before.Main.kt
blob: c1a57bfbb18fc9065f43cf6348002d2e84a13ee0 (plain)
1
2
3
4
5
6
7
8
// "Create member function 'B.foo'" "true"
// ERROR: Unresolved reference: foo

class A<T> internal constructor(val b: B<T>) {
    fun test(): Int {
        return b.<caret>foo<Int>(2, "2")
    }
}