dmd/compiler/test/fail_compilation/fail290.d
2022-07-09 18:53:07 +02:00

16 lines
199 B
D

/*
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;
}