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