Files
kotlin/idea/testData/codeInsight/overrideImplement/implementJavaRawSubclass/foo/B.java
Denis Zharkov 41d4af2cb9 Implement rendering of raw types
Also add some clarification in spec
2015-08-06 08:18:18 +03:00

7 lines
105 B
Java
Vendored

package foo;
import java.util.*;
public interface B<T> {
B<String> foo(List<String> x, String y);
}