blob: 7e117d526abe0a22f8fe5c203963a2c0eec1ce5c [file] [log] [blame]
Chris Lattneref4e0c22006-09-01 21:14:37 +00001// RUN: tblgen %s
2class C1<int A, string B> {
3 int bar = A;
4 string thestr = B;
5}
6
7def T : C1<4, "blah">;
8
9multiclass t<int a> {
10 def S1 : C1<a, "foo"> {
11 int foo = 4;
12 let bar = 1;
13 }
14 def S2 : C1<a, "bar">;
15}
16
17defm FOO : t<42>;