Graduate LLVM to the big leagues by embedding a LISP processor into TableGen.
[oota-llvm.git] / test / TableGen / TemplateArgRename.td
index b940a56d03a5bc61044dc5eca6e9053a7d069f18..535c2e430129534067adc02f267d8b5ec8bc9fbb 100644 (file)
@@ -1,4 +1,4 @@
-// tblgen %s
+// RUN: tblgen %s
 
 // Make sure there is no collision between XX and XX.
 def S;
@@ -8,3 +8,10 @@ class After : Before<4> {
   dag XX = (S);
 }
 
+
+
+class C1<int X> {
+  int Y = X;
+}
+class C2<int Y, dag X> : C1<Y>;
+