aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test1.d
blob: d20d0a9f84956feb539ffd777c32b1236a13b931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PERMUTE_ARGS:
// EXTRA_FILES: imports/test1imp.d
class File
{
    import imports.test1imp;

    static char[] read(char[] name)
    {
	DWORD size;	// DWORD is defined in test1imp
	return null;
    }

}