Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail7424d.d
blob: 38f47ba0913d962fd58d83704da85c2f9b919819 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail7424d.d(10): Error: template `this.g()()` has no value
---
*/
struct
S7424d
{
@property
int
g
()()
immutable
{
return
0
;
}
void
test
()
const
{
int
f
=
g
;
}
}