4 fail_compilation/diag10415.d(36): Error: none of the overloads of `x` are callable using argument types `(int) const`
5 fail_compilation/diag10415.d(13): Candidates are: `diag10415.C.x() const`
6 fail_compilation/diag10415.d(18): `diag10415.C.x(int __param_0)`
7 fail_compilation/diag10415.d(39): Error: d.x is not an lvalue
13 @property int x() const
23 template AddProp() { @property int x() { return 1; } }
24 template AddFunc() { void x(int, int) {} }