https://issues.dlang.org/show_bug.cgi?id=22069
Issue ID: 22069
Summary: importC: Error: found '&' instead of statement
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
This code is valid as per the grammar, but rejected.
---
void test()
{
int var;
&var;
}
--
