mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
407 B
D
15 lines
407 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail18228.d(12): Error: undefined identifier `this`, did you mean `typeof(this)`?
|
|
fail_compilation/fail18228.d(13): Error: undefined identifier `this`, did you mean `typeof(this)`?
|
|
fail_compilation/fail18228.d(14): Error: undefined identifier `super`, did you mean `typeof(super)`?
|
|
---
|
|
*/
|
|
|
|
class C
|
|
{
|
|
this(this a) {}
|
|
this(int a, this b) {}
|
|
this(super a) {}
|
|
}
|