Files
kotlin-fork/idea/testData/refactoring/changeSignature/GenericsWithSAMConstructorsBefore.java
T

13 lines
139 B
Java
Vendored

class X<A> {
}
interface Foo<A, B> {
A <caret>foo(A a, B b);
}
class SamTest {
static <A, B> void test(Foo<A, B> foo) {
}
}