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