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