blob: 296e30c7c788f330319acd22d8038db81a233751 [file] [log] [blame]
Peter Collingbourne5d5c0622011-10-06 13:39:59 +00001// RUN: llvm-tblgen %s | grep WorldHelloCC | count 1
Jeffrey Yasskin32989de2010-03-20 23:08:45 +00002// XFAIL: vg_leak
David Greene065f2592009-05-05 16:28:25 +00003
4class C<string n> {
5 string name = n;
6}
7
8multiclass Names<string n, string m> {
9 def CC : C<n>;
10 def World#NAME#CC : C<m>;
11}
12
13defm Hello : Names<"hello", "world">;