blob: 9d0f9dd302711507c66da31d60f841563b624451 [file] [log] [blame]
interface StaticBase<T> {
static <T> void foo(T t) {}
}
class Foo implements StaticBase<Number> {
static <T> void foo(T t){}
}