mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
171 B
D
11 lines
171 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail318_b.d(8): Error: function `D main` must return `int`, `void` or `noreturn`, not `string`
|
|
---
|
|
*/
|
|
|
|
auto main()
|
|
{
|
|
return "";
|
|
}
|