138c93d9bb0c408cc7e707bb377ae7a58bf37e54
[oota-llvm.git] / test / TableGen / MultiClassDefName.td
1 // RUN: 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">;