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