blob: ad38cd790b884eea9ef7e4094ba0482ae58845c9 [file] [log] [blame]
template Foo(alias b)
{
int abc() { return b; }
}
void main()
{
int y = 8;
mixin Foo!(y);
mixin Foo!(y);
assert(abc() == 8);
}