accessors
accessors copied to clipboard
Generate D getters and setters automatically
When using two different types with the same name (one of them imported as an alias) inside a class breaks compilation: ``` import accessors; import person : PersonId; import another...
Wish from here: http://forum.dlang.org/post/[email protected]
The following code fails with > Error: template stuff.TestEnum(string name) is used as a type ```d template TestEnum(string name) { enum TestEnum : bool { yes = true } }...