blob: 2d735815d5865bbb570018e9b477df2934b8e964 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail290.d(15): Error: no `this` to create delegate for `foo`
---
*/
struct Foo
{
void foo(int x) {}
}
void main()
{
void delegate (int) a = &Foo.foo;
}