1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/fail183.d(10): Error: redundant attribute `const` 5 fail_compilation/fail183.d(10): Error: redundant attribute `scope` 6 fail_compilation/fail183.d(11): Error: redundant attribute `in` 7 --- 8 */ 9 f(in final const scope int x)10void f(in final const scope int x) {} g(final const scope in int x)11void g(final const scope in int x) {} 12