dmd/compiler/test/fail_compilation/fail5851.d
2023-07-17 17:52:31 +02:00

16 lines
204 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail5851.d(11): Error: alias this is not reachable as `Foo` already converts to `object.Object`
---
*/
class Foo
{
Object o;
alias o this;
}
void main()
{
}