summaryrefslogtreecommitdiff
path: root/test/TableGen/DagIntSubst.td
blob: 3c1291c3eca6e653384164dc1f4c42ee6ccf1475 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: tblgen %s | grep {dag d = (X 13)}
def X;

class C<int N> {
  dag d = (X N);
}

def VAL : C<13>;