mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
8 lines
234 B
D
8 lines
234 B
D
// EXTRA_FILES: test9692a.d imports/test9692b.d
|
|
module test9692;
|
|
|
|
import test9692a;
|
|
import imports.test9692b;
|
|
|
|
enum x = [__traits(allMembers, imports.test9692b)]; // ok
|
|
enum y = [__traits(allMembers, test9692a)]; // ng: should work
|