Bug 9692 – __traits(allMembers) fails on module without a package
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2013-03-11T16:47:00Z
Last change time
2013-04-08T04:11:13Z
Keywords
pull, rejects-valid
Assigned to
andrej.mitrovich
Creator
andrej.mitrovich
Comments
Comment #0 by andrej.mitrovich — 2013-03-11T16:47:59Z
module test;
import dir.other;
pragma(msg, __traits(allMembers, dir.other)); // ok
import other;
pragma(msg, __traits(allMembers, other)); // ng
void main(){ }
---
module other;
int j;
---
module dir.other;
int j;
$ rdmd test.d
> Error: import other has no members
Comment #1 by andrej.mitrovich — 2013-03-11T16:54:02Z