blob: 191bf8ffa03fbc0671ad7935e53fc7409beadb6b [file] [log] [blame]
module imports.link9571a;
struct MapResult(alias fun)
{
void bar() { fun(0); }
}
auto foo()
{
alias MapResult!(function(int c) => 0) M;
M m;
m.bar();
}