blob: e274aec3e0741353d933078dcb7c6554e1c0c9e2 [file] [log] [blame]
public class Main {
public static void main(String[] args) {
Bar b = new B<caret>
}
}
public abstract class Bar {
protected Bar(int a) {
}
abstract void update();
}