mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
277 B
D
17 lines
277 B
D
// https://issues.dlang.org/show_bug.cgi?id=11038
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail11038.d(16): Error: `printf` is not defined, perhaps `import core.stdc.stdio;` is needed?
|
|
---
|
|
*/
|
|
|
|
static
|
|
{
|
|
import core.stdc.stdio;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
printf("foo"); // compiles
|
|
}
|