Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail267.d
blob: fe0299404cf2363804f47dc5b96ae9bac7c63120 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail267.d(15): Error: template `Bar()` does not have property `foo`
---
*/
class
C
{
template
Bar
()
{
}
}
typeof
(
C
.
Bar
.
foo
)
quux
;