blob: b39a9a8995fbce58e53c96c91f34e68fd41493be [file] [log] [blame]
package c6;
/* Test case for bug 24346 Method declaration not found in field initializer*/
public class X {
public void bar() {
}
public Object x = new Object() {
public void foo24346() {
}
};
}