mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
213 B
D
14 lines
213 B
D
// https://issues.dlang.org/show_bug.cgi?id=22529
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail22529.d(13): Error: found `return` when expecting `;` following expression
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
foo()
|
|
return;
|
|
}
|