1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail9081.d(12): Error: package core has no type
5 fail_compilation/fail9081.d(13): Error: package stdc has no type
6 fail_compilation/fail9081.d(14): Error: module stdio has no type
7 ---
8 */
9 
10 import core.stdc.stdio;
11 
12 typeof(core) a;
13 typeof(core.stdc) b;
14 typeof(core.stdc.stdio) c;
15