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