blob: 4fee7bdbcbae18b31fedf0d3c9eea98650d9c7be [file] [log] [blame]
// "Create Method 'get'" "true"
class W<T> {
public T get(T s) {
<selection>return null;</selection>
}
}
class C {
void foo () {
W<String> w = new W<String>();
String s = w.get("");
}
}