mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
201 B
C
9 lines
201 B
C
|
|
__attribute__((noinline)) int abc() { return 1; }
|
|
__declspec(noinline) int def() { return 2; }
|
|
inline int ghi() { return 3; }
|
|
|
|
int test()
|
|
{
|
|
return abc() + def() + ghi();
|
|
}
|