dmd/compiler/test/runnable/test23025.c
2022-07-09 18:53:07 +02:00

10 lines
201 B
C

/* https://issues.dlang.org/show_bug.cgi?id=23025
*/
const char *s; // tentative definition
const char *s = "hello"; // definition
int puts(const char*);
int main(void){
puts(s);
return 0;
}