1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail290.d(15): Error: no `this` to create delegate for `foo`
5 ---
6 */
7 
8 struct Foo
9 {
fooFoo10     void foo(int x) {}
11 }
12 
main()13 void main()
14 {
15     void delegate (int) a = &Foo.foo;
16 }
17