blob: 2e71f7d0616913b9e94ef0f25c595e6c78570e3c [file] [log] [blame]
// RUN: tblgen %s | grep WorldHelloCC | count 1
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">;