https://issues.dlang.org/show_bug.cgi?id=18366
Issue ID: 18366
Summary: header file generation doesn't include the return
attribute
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
---
struct FullCaseEntry
{
dchar[3] seq;
ubyte n, size;// n number in batch, size - size of batch
ubyte entry_len;
@property auto value() const @trusted pure nothrow @nogc return
{
return seq[0 .. entry_len];
}
}
---
PR incoming.
--