blob: d7b4dff9b57077083f0bdc2dce3f70973f77e5cf [file] [log] [blame]
interface Bar<T> { }
interface Base<T> { }
class Foo<T,U> implements Base<U> {
void fo<caret>o(Bar<U> bar) { }
}