blob: 2e71f7d0616913b9e94ef0f25c595e6c78570e3c [file] [log] [blame]
David Greene065f2592009-05-05 16:28:25 +00001// RUN: tblgen %s | grep WorldHelloCC | count 1
2
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">;