mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
200 B
D
14 lines
200 B
D
// note: not actually imported, just built and linked against
|
|
// EXTRA_SOURCES: imports/extern1a.d
|
|
// PERMUTE_ARGS:
|
|
|
|
extern (C)
|
|
{
|
|
extern int x;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
assert(x == 3);
|
|
return 0;
|
|
}
|