diff options
Diffstat (limited to 'test/TableGen/ListManip.td')
-rw-r--r-- | test/TableGen/ListManip.td | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/TableGen/ListManip.td b/test/TableGen/ListManip.td new file mode 100644 index 0000000..55fb5ea --- /dev/null +++ b/test/TableGen/ListManip.td @@ -0,0 +1,12 @@ +// RUN: tblgen %s +// XFAIL: vg_leak + +class Bli<string _t> +{ + string t = _t; +} + +class Bla<list<Bli> _bli> +: Bli<!car(_bli).t> +{ +} |