blob: a89a8699626f64048d4109e5e7716b9e5d377cb3 [file] [log] [blame]
/**
* This code must be kept in sync with {@link com.google.gwt.dev.javac.TypeOracleMediatorTestBase}
*/
package com.google.gwt.dev.javac.mediatortest;
public class EnclosingLocalWithMember {
public int foo;
public Object getLocal() {
class MyObject {
int getFoo() {
return foo;
}
}
return new MyObject() {
};
}
}