blob: 75b9bf10655c532a9b56a197e6678d07f387e57f [file] [log] [blame]
// Test case for Issue 1411:
// https://github.com/typetools/checker-framework/issues/1411
import org.checkerframework.dataflow.qual.Pure;
interface IGeneric<V> {
@Pure
public V get();
}
interface IConcrete extends IGeneric<char[]> {}
public class Issue1411 {
static void m(IConcrete ic) {
char[] val = ic.get();
}
}