blob: 4cab7d3b56c4fa23e83a71f5bb210e4ff25db47d [file] [log] [blame]
/*
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; }
}