blob: c3a8dbbaa4deb111a468402fb84c10bae14a4672 [file] [log] [blame]
// Test case for Issue #888
// https://github.com/typetools/checker-framework/issues/888
public class Issue888 {
<T> T foo(T t) {
return t;
}
void bar(int i) {
foo(i).toString();
}
}