mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
145 B
D
8 lines
145 B
D
module issue22682;
|
|
|
|
void main()
|
|
{
|
|
pragma(mangle, "put" ~ "s")
|
|
extern(C) static int libcPuts(const char*);
|
|
libcPuts("issue 22682");
|
|
}
|