mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
190 B
D
11 lines
190 B
D
/*
|
|
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; }
|
|
}
|