Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag8697.d
blob: a2abad587640b437c4bf3655064c985ae6fc4e7a [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag8697.d(10): Error: no property `Invalid` for type `diag8697.Base`
---
*/
interface
InterBase
:
InterRoot
{
}
class
Base
:
InterBase
{
}
void
test
(
Base
.
Invalid
)
{
}
interface
InterRoot
{
}