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