mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
246 B
C
19 lines
246 B
C
/* RUN_OUTPUT:
|
|
---
|
|
xx need dictionary
|
|
---
|
|
*/
|
|
|
|
// issues.dlang.org/show_bug.cgi?id=22376
|
|
|
|
int printf(const char *, ...);
|
|
|
|
char * const errmsg[1] = {
|
|
(char*)"need dictionary",
|
|
};
|
|
|
|
int main()
|
|
{
|
|
printf("xx %s\n", errmsg[0]);
|
|
return 0;
|
|
}
|