https://issues.dlang.org/show_bug.cgi?id=16292
Issue ID: 16292
Summary: [REG2.069] bogus "Error: goto skips declaration of
variable"
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Keywords: rejects-valid
Severity: regression
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
void main()
{
goto label; /* Error: goto skips declaration of variable test.main.__dop51
at test.d(4) */
if (makeS()[0]) /* line 4 */
{
label:
}
}
S makeS() { return S(); }
struct S
{
int opIndex(size_t i) { return 0; }
}
--