dmd/compiler/test/fail_compilation/fail18228.d
2022-07-09 18:53:07 +02:00

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) {}
}