1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail334.d(10): Error: properties can only have zero, one, or two parameter
5 ---
6 */
7 
8 struct S
9 {
fooS10     @property int foo(int a, int b, int c) { return 1; }
11 }
12