blob: df43625a4abeb36c033d948084363c34ee7380f6 [file] [log] [blame]
int main(int argc, char* argv[])
{
int i = 3;
switch (argc) {
case 1:
i = 0;
__attribute__((fallthrough));
default:
return i;
}
}