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