blob: c43d377e9f9299612d8857eaa4070103385000e4 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail183.d(10): Error: redundant attribute `const`
fail_compilation/fail183.d(10): Error: redundant attribute `scope`
fail_compilation/fail183.d(11): Error: redundant attribute `in`
---
*/
void f(in final const scope int x) {}
void g(final const scope in int x) {}