blob: c3b18a6bb90c8d48b851afda572443ab8a5a07b3 [file] [log] [blame]
public class BasicTest {
// Random code just to make sure that the compound 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;
}
}