1 // RUN: llvm-tblgen %s | grep WorldHelloCC | count 1
2 // XFAIL: vg_leak
3
4 class C<string n> {
5 string name = n;
6 }
7
8 multiclass Names<string n, string m> {
9 def CC : C<n>;
10 def World#NAME#CC : C<m>;
11 }
12
13 defm Hello : Names<"hello", "world">;
14