mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
14 lines
376 B
D
14 lines
376 B
D
// test for duplicate symbols in druntime and uuid.lib
|
|
module test;
|
|
|
|
version(CRuntime_Microsoft) {} else static assert(false, "Windows/COFF only");
|
|
|
|
import core.sys.windows.basetyps;
|
|
import core.sys.windows.uuid;
|
|
|
|
extern extern(C) IID IID_IDelayedPropertyStoreFactory; // from uuid.lib
|
|
|
|
void main()
|
|
{
|
|
assert(IID_IDirect3DNullDevice != IID_IDelayedPropertyStoreFactory);
|
|
}
|