68844131b0
Out of three methods, two were incorrect
17 lines
231 B
Java
Vendored
17 lines
231 B
Java
Vendored
package test;
|
|
|
|
public enum Enum {
|
|
A,
|
|
B,
|
|
C;
|
|
|
|
public static class Nested {
|
|
void foo() {}
|
|
void values() {}
|
|
}
|
|
|
|
public class Inner {
|
|
void bar() {}
|
|
void valueOf(String s) {}
|
|
}
|
|
} |