blob: 831ff2db4f9ee79be052096e84151061ba570141 [file] [log] [blame]
import java.io.File;
public class Super {
protected <T> T foo() {}
}
public class Foo extends Super {
{
bar(this.<File>foo());<caret>
}
void bar(java.io.File s) {}
}