Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail5733.d
blob: d58b362315b0b5e9d31bb3137cc3f353a151e83e [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail5733.d(12): Error: `opDispatch!"foo"` isn't a template
---
*/
struct
Test
{
struct
opDispatch
(
string
dummy
)
{
enum
opDispatch
=
1
;
}
}
auto
temp
=
Test
().
foo
!(
int
);