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