https://issues.dlang.org/show_bug.cgi?id=17748

--- Comment #9 from anonymous4 <[email protected]> ---
What is the reason for breakage? For convenience attributes applied in bulk
silently skip members they are not applicable to:
This works:
---
struct A
{
  final: int a;
}
---
But if applied on per member basis they give error:
---
struct A
{
  final int a; //error
}
---

--

Reply via email to