mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
329 B
D
18 lines
329 B
D
/*
|
|
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()
|
|
{
|
|
}
|