blob: 6717f0845c70791ada654388b48e29f08d84f91a [file] [log] [blame]
// "Remove type arguments" "true"
abstract class SomeClass<K, T> implements Some<K, T> {
public abstract void doSomething(K key, Node<caret> root);
}
class Node {}
interface Some<II, OO>{}