aboutsummaryrefslogtreecommitdiff
path: root/test/bytecode/resource/Buux.java
blob: 33b352e282d526c955ca72a85cb76c7cbc86705b (plain)
1
2
3
4
5
6
7
8
9
10
public class Buux extends java.util.ArrayList {
	public Buux() {
		super(7);
		addSomething();
	}
	
	public void addSomething() {
		super.add("H\u3404l\0");
	}
}