Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail5851.d
blob: 236a956de923e018a7cd24dc23838667ef1ddcce [
file
] [
log
] [
blame
]
/*
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
()
{
}