https://issues.dlang.org/show_bug.cgi?id=2189
RazvanN <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #1 from RazvanN <[email protected]> --- This bug report is invalid. `test.c` is a valid identifier and taking an alias to it is fine. For example: class test1 { alias test.c d; void foo() { int a = d.offsetof; } } If you use it like this: class test1 { alias test.c d; void foo() { int a = d; } } The you get the correct error: "need this for c of type int". Closing as invalid. --
