blob: 3c1291c3eca6e653384164dc1f4c42ee6ccf1475 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: tblgen %s | grep {dag d = (X 13)}
2def X;
3
4class C<int N> {
5 dag d = (X N);
6}
7
8def VAL : C<13>;
9
10