blob: 83f27cd47c42ccd3aa3cca822b0f907b4fde27f2 [file] [log] [blame]
public class Test {
interface A<T> {
void foo(T t);
}
interface B<T> {
void bar(T t);
}
}