1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail169.d(8): Error: cannot have const out parameter of type const(int)
5 ---
6 */
7 
foo(const out int x)8 void foo(const out int x) { }
9