mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
132 B
C
8 lines
132 B
C
// https://issues.dlang.org/show_bug.cgi?id=23958
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
char buf[8];
|
|
sprintf(buf, "%d", 123);
|
|
}
|