blob: 8a3d2fbf5662714f769dda84c11937c04fa20eaf [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail10082.d(24): Error: cannot infer type from overloaded function symbol `&foo`
---
*/
mixin template T()
{
int foo()
{
return 0;
}
}
class A
{
mixin T;
mixin T;
}
void main()
{
auto x = &A.foo;
}