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