new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-01-31 06:01:40 +00:00
parent 6dc83c777d
commit 5def058f38

View File

@ -0,0 +1,10 @@
// RUN: tblgen %s | grep 'dag d = (X 13)'
def X;
class C<int N> {
dag d = (X N);
}
def VAL : C<13>;