blob: 055d39d7b786132457379b07e01d771d2fb0cfa3 [file] [log] [blame]
public class BasicTest {
// Random code just to make sure that the aggregate design pattern
// does not throw any exceptions
Object field = new Object();
String[] array = {"hello", "world"};
void foo(int arg) {
field = array[0];
field.toString();
int a = 1 + arg;
}
}