fix this testcase
[oota-llvm.git] / test / TableGen / TemplateArgRename.td
1 // tblgen %s
2
3 // Make sure there is no collision between XX and XX.
4 def S;
5
6 class Before<int XX>;
7 class After : Before<4> {
8   dag XX = (S);
9 }
10