Peter Collingbourne | 7f7f2e9 | 2011-10-06 13:39:59 +0000 | [diff] [blame] | 1 | // RUN: llvm-tblgen %s |
Daniel Dunbar | db0ddaa | 2010-09-09 15:50:19 +0000 | [diff] [blame] | 2 | // XFAIL: vg_leak |
3 | |||||
David Greene | 2a9de4d | 2010-09-03 21:00:49 +0000 | [diff] [blame] | 4 | class Bli<string _t> |
5 | { | ||||
6 | string t = _t; | ||||
7 | } | ||||
8 | |||||
9 | class Bla<list<Bli> _bli> | ||||
David Greene | 2f7cf7f | 2011-01-07 17:05:37 +0000 | [diff] [blame] | 10 | : Bli<!head(_bli).t> |
David Greene | 2a9de4d | 2010-09-03 21:00:49 +0000 | [diff] [blame] | 11 | { |
12 | } |