mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 22:50:27 +03:00
8 lines
166 B
D
8 lines
166 B
D
|
|
struct S { int[10] a; }
|
|
int test1();
|
|
S test2();
|
|
|
|
static assert(__traits(isReturnOnStack, test1) == false);
|
|
static assert(__traits(isReturnOnStack, test2) == true);
|
|
|