blob: 86d5e639030ad47d7f619b1a3031f4ce7c3e38ce [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(str)<caret>;
}
}