mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
178 B
D
10 lines
178 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/bug5b.d(8): Error: function `bug5b.test1` has no `return` statement, but is expected to return a value of type `int`
|
|
---
|
|
*/
|
|
|
|
int test1()
|
|
{
|
|
}
|