← Back to index
|
Original Bugzilla link
Bug 13800 – Class from mixin template missing from ModuleInfo
Status
NEW
Severity
normal
Priority
P3
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2014-11-30T19:05:50Z
Last change time
2024-12-13T18:37:40Z
Assigned to
No Owner
Creator
forsaken
Moved to GitHub: dmd#17689 →
Comments
Comment #0
by nicolas.jinchereau — 2014-11-30T19:05:50Z
program output does not contain "SomeClass". ///******* module main; import std.stdio; mixin template Test() { class SomeClass { } } mixin Test; void main() { auto sc = new SomeClass; assert(sc); foreach(m; ModuleInfo) { foreach(c; m.localClasses) { writeln(c.name); } } }
Comment #1
by robert.schadek — 2024-12-13T18:37:40Z
THIS ISSUE HAS BEEN MOVED TO GITHUB
https://github.com/dlang/dmd/issues/17689
DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB