Add support for using the `!if' operator when initializing variables:
[oota-llvm.git] / test / TableGen / ForwardRef.td
index 57de9d25c8db831d709eec6524f8abcde8266614..955cc14248f841d32ede4b3cb5374affd4a7a434 100644 (file)
@@ -1,6 +1,16 @@
 // RUN: tblgen %s -o -
+// XFAIL: vg_leak
 
 class bar {
   list<bar> x;
 }
 
+class foo;
+class foo;
+
+class baz { list<foo> y; }
+
+class foo {
+
+}
+