You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int main(string[] a) {
switch (a[0]) {
case "one":
return 1;
case "two":
return 2;
case "three":
return 3;
case "four":
return 4;
case "five":
return 5;
case "six":
return 6;
case "seven":
return 7;
default:
return 0;
}
}
The following code
when compiled with these options:
results in the following error:
The identifier in question is defined in druntime here.
Tested on Windows 10 with LDC 1.40.0.
The text was updated successfully, but these errors were encountered: