mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
218 B
D
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)
|
|
{
|
|
}
|