d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test15177.d
blobb0ae7ae53d441f504bf22a707d3bb3ed9a900c50
1 // REQUIRED_ARGS: -o-
2 // COMPILED_IMPORTS: imports/test15117a.d
3 /*
4 TEST_OUTPUT:
5 ---
6 fail_compilation/test15177.d-mixin-19(19): Error: `imports.test15117a.object` is not visible from module `test15177`
7 fail_compilation/test15177.d(28): Error: template instance `test15177.RunApiTest!()` error instantiating
8 ---
9 */
11 import users = imports.test15117a;
13 void RunApiTest(T...)()
15 foreach (name; __traits(allMembers, users))
17 // 3. list the name of TyepInfoStructDeclaration,
18 // but it's just internal symbol and invisible.
19 mixin("alias func = users . " ~ name ~ ";");
23 void main()
25 // 1. run semantic3 of users.test_usr_1
26 users.test_usr_1();
28 RunApiTest!();