mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
205 B
D
13 lines
205 B
D
// 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;
|
|
}
|
|
|
|
}
|