Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail240.d
blob: e32768adbf2ed390e61a702fc9cdb8917b517bbc [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail240.d(9): Error: type `F` is not an expression
---
*/
class
F
{
int
x
;
}
alias
typeof
(
typeof
(
F
).
x
)
b
;