mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
229 B
D
10 lines
229 B
D
// REQUIRED_ARGS: -o-
|
|
// PERMUTE_ARGS:
|
|
|
|
nothrow /*extern(Windows) */export int GetModuleHandleA(const char* lpModuleName);
|
|
|
|
void main()
|
|
{
|
|
/*extern(Windows) */int function(const char*) f;
|
|
assert(f != &GetModuleHandleA);
|
|
}
|