blob: 238f711f27b96ce35cbf571c4ac93b057b2efc66 [file] [log] [blame]
abstract class Foo {
protected int field;
public int f(Bar t){
((Foo)t).field = 0;
return ((Foo)t).field;
}
}
class Bar extends Foo{}