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