// Test empty case statement warnings
proc main()
{
    switch (oadl::nargs()) {
    case 1 :
        "";     // NOP statement - this should not warn
    case 2 :    // Empty case - this SHOULD warn
    case 3, 4 :
        "Several args\n";
    default :
        "Unknown arg count\n";
    }
}