mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
167 B
D
8 lines
167 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail170.d(8): Error: variable `fail170.foo.x` cannot be `final`, perhaps you meant `const`?
|
|
---
|
|
*/
|
|
|
|
void foo(final out int x) { }
|