"public class Test extends Panel {",
" public Test() {",
" }",
"}");
// remove Layout (using ObjectInfo, to prevent implicit layout creation)
frame.removeChild(frame.getLayout());
try {
frame.getLayout();
fail();
} catch (IllegalStateException e) {
}