mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
5 lines
157 B
OpenEdge ABL
5 lines
157 B
OpenEdge ABL
// https://issues.dlang.org/show_bug?id=21938
|
|
|
|
__attribute__((always_inline)) int square(int x) { return x * x; }
|
|
|
|
int doSquare(int x) { return square(x); }
|