blob: 138c93d9bb0c408cc7e707bb377ae7a58bf37e54 [file] [log] [blame]
// 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">;