blob: 517a1468542dbcd29dcf53b5e4cbb7bd5270317c [file] [log] [blame]
package cast_out;
public class TestNoCast {
String fName;
String getName() {
return fName;
}
void foo(TestNoCast o) {
System.out.println(fName);
}
}