summaryrefslogtreecommitdiff
path: root/test/TableGen/MultiClassDefName.td
blob: 138c93d9bb0c408cc7e707bb377ae7a58bf37e54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: tblgen %s | grep WorldHelloCC | count 1
// XFAIL: vg_leak

class C<string n> {
  string name = n;
}

multiclass Names<string n, string m> {
   def CC : C<n>;
   def World#NAME#CC : C<m>;
}

defm Hello : Names<"hello", "world">;