Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail19181.d
blob: 873e2929efed61462d0e0026b424ad1e79379045 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail19181.d(15): Error: undefined identifier `LanguageError`
---
*/
struct
S
{
void
opDispatch
(
string
name
,
T
)(
T arg
)
{
}
}
void
main
()
{
S s
;
s
.
foo
(
LanguageError
);
}