blob: 3ee5c10de4bc7840a5a4b3fc0f95aeef93c29590 [file] [log] [blame]
Bill Wendlingb4be7f62013-08-22 20:46:05 +00001// RUN: llvm-tblgen %s | FileCheck %s
2
3// CHECK: WorldHelloCC
4// CHECK-NOT: WorldHelloCC
David Greene065f2592009-05-05 16:28:25 +00005
6class C<string n> {
7 string name = n;
8}
9
10multiclass Names<string n, string m> {
11 def CC : C<n>;
12 def World#NAME#CC : C<m>;
13}
14
15defm Hello : Names<"hello", "world">;