blob: 100c860fdfa5cdca60b90310a692d9456c94b0c4 [file] [log] [blame]
// Tet case for Issue 1526.
// https://github.com/typetools/checker-framework/issues/1526
public class Issue1526 {
public <T> T get(T t) {
return this.get(t);
}
public <T> T method(T[] t) {
return this.method(t);
}
public <T> T method2(Gen<T> t) {
return this.method2(t);
}
static class Gen<T> {}
}