Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail7424b.d
blob: c3fc3116939c67997c5763902277e75770269d42 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail7424b.d(10): Error: template `this.g()()` has no value
---
*/
struct
S7424b
{
@property
int
g
()()
{
return
0
;
}
void
test
()
const
{
int
f
=
g
;
}
}