blob: 8da0b8d443744efcdb36d9f56d919e29e06a2791 [file] [log] [blame]
/*
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) {}
}