Skip to content

Instantly share code, notes, and snippets.

@vporton
Created February 26, 2019 04:14
Show Gist options
  • Save vporton/6ff797ccb296298200bf21fd65df0ed2 to your computer and use it in GitHub Desktop.
Save vporton/6ff797ccb296298200bf21fd65df0ed2 to your computer and use it in GitHub Desktop.
delegate example
```d
import std.stdio;
struct S {
void f2(int i) {}
}
void main(string[] args)
{
S s;
void delegate(int i) d = &s.f2;
writeln("tested");
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment