blob: 138c93d9bb0c408cc7e707bb377ae7a58bf37e54 [file] [log] [blame]
David Greene065f2592009-05-05 16:28:25 +00001// RUN: 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">;