blob: db14fe4d8e70aed0069606e78bf235060e224371 [file] [log] [blame]
// "Try to generify 'before1.java'" "true"
class c<T> {
void put(T t ) {
}
}
class Use {
void f() {
c c = new c();
<caret>c.put("");
}
}