summaryrefslogtreecommitdiff
path: root/test/TableGen/ListManip.td
diff options
context:
space:
mode:
Diffstat (limited to 'test/TableGen/ListManip.td')
-rw-r--r--test/TableGen/ListManip.td4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/TableGen/ListManip.td b/test/TableGen/ListManip.td
index c221bb1335b6..6b1e491cd25f 100644
--- a/test/TableGen/ListManip.td
+++ b/test/TableGen/ListManip.td
@@ -1,10 +1,12 @@
// RUN: tblgen %s
+// XFAIL: vg_leak
+
class Bli<string _t>
{
string t = _t;
}
class Bla<list<Bli> _bli>
-: Bli<!car(_bli).t>
+: Bli<!head(_bli).t>
{
}