ネストされたクラスで@AutoValueを使用しようとする場合:
public class Nested {
@AutoValue
public static abstract class Example {
public static Example create(String name, int integer) {
return new AutoValue_Example(name, integer);
}
public abstract String name();
public abstract int integer();
}
}
のコンパイラ エラーcannot find symbol
が発生しAutoValue_Example
ます。私が間違っていることについてのアイデアはありますか?