dmd/compiler/test/fail_compilation/test18130.d
2022-07-09 18:53:07 +02:00

10 lines
218 B
D

/*
TEST_OUTPUT:
---
fail_compilation/test18130.d(8): Error: variable `test18130.foo.v` zero-length `out` parameters are not allowed.
---
*/
// https://issues.dlang.org/show_bug.cgi?id=18130
void foo(out byte[0] v)
{
}