mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
238 B
D
12 lines
238 B
D
/*
|
|
https://issues.dlang.org/show_bug.cgi?id=14954
|
|
|
|
EXTRA_SOURCES: imports/test14954_implementation.d
|
|
LINK:
|
|
*/
|
|
|
|
extern(C) struct UndeclaredStruct;
|
|
extern(C) __gshared extern UndeclaredStruct blah;
|
|
__gshared auto p = &blah;
|
|
|
|
void main() {}
|