blob: ca2e8213682b6584d7290a5b6afb6fe2bba32cb7 [file] [log] [blame]
class Generic<T> { }
class Other {
static <T> T take(Generic<T> thing) { return null; }
}
class Tester {
Generic<String> str;
void method() {
CharSequence x = Other.take(<caret>);
}
}