blob: c9af9d30088c38acc2de9fb395db1d8c7db52747 [file] [log] [blame]
// ICE(template.c) in DMD0.080
int i;
template bar(T)
{
void bar(int x) {}
}
template foo(alias X)
{
bar!(typeof(X))(X);
}
void main()
{
foo!(i);
}