blob: e59c071c49a8480514eebfee037da62dab796006 [file] [log] [blame]
interface Issue3884 {
String go(Kind kind);
Issue3884 FOO =
kind -> {
switch (kind) {
case A:
break;
}
return "";
};
enum Kind {
A,
B,
C;
}
}