blob: 4ecc092eae6bbca5795e6ed754f19f57f8f6c8ba [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail17976.d(11): Error: constructor `fail17976.S.this` parameter `this.a` is already defined
fail_compilation/fail17976.d(11): Error: constructor `fail17976.S.this` parameter `this.a` is already defined
---
*/
struct S
{
this(string a, string a, string a)
{
}
}
void main()
{
}