blob: 0f02adc1af6f8392f771599c86dd3d99a76f7ffc [file] [log] [blame]
public class A<T> {
T get() {
return null;
}
void method() {
get();
}
}