blob: 75d6af5b42b966f1f374cf00091e403c49a61f16 [file] [log] [blame]
Peter Collingbourne5d5c0622011-10-06 13:39:59 +00001// RUN: llvm-tblgen %s | grep WorldHelloCC | count 1
David Greene065f2592009-05-05 16:28:25 +00002
3class C<string n> {
4 string name = n;
5}
6
7multiclass Names<string n, string m> {
8 def CC : C<n>;
9 def World#NAME#CC : C<m>;
10}
11
12defm Hello : Names<"hello", "world">;