mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
201 B
C
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;
|
|
}
|