mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
244 B
C
19 lines
244 B
C
/* DISABLED: osx32 osx64 win32 win64
|
|
* TEST_OUTPUT:
|
|
---
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23347
|
|
|
|
void fork() { }
|
|
|
|
#pragma pack(push, 4)
|
|
void spoon() asm("fork");
|
|
#pragma pack(pop);
|
|
|
|
int main()
|
|
{
|
|
spoon();
|
|
return 0;
|
|
}
|