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