blob: 385c526ccefc437a79946e2ce75a986b5369a410 [file] [log] [blame]
// Test case for Issue 392:
// https://github.com/typetools/checker-framework/issues/392
public class Issue392<T> {
public <T> void getFields(T t) {
Object o = new Object[] {t, t};
}
}