mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
151 B
D
8 lines
151 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail169.d(8): Error: cannot have `const out` parameter of type `const(int)`
|
|
---
|
|
*/
|
|
|
|
void foo(const out int x) { }
|