blob: 992908a97efe47181492a6851796a671e94a41ea [file] [log] [blame]
class C<T> {
void put(T t) {
System.out.println(t);
}
}
class CString extends C<String> {
void put(String t) {
System.out.println(t +"Text");
}
}