fix a bug in the testcase
authorChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2004 17:33:21 +0000 (17:33 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2004 17:33:21 +0000 (17:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11949 91177308-0d34-0410-b5e6-96231b3b80d8

test/TableGen/SuperSubclassSameName.td

index ded84de6954524cf1714c5dae249f40486314ce1..087df87124bfb9badcf73d00198de084dbab73ea 100644 (file)
@@ -4,7 +4,7 @@
 
 
 class Arg { int a; }
-class TheArg : Arg { let a = 1; }
+def TheArg : Arg { let a = 1; }
 
 
 class Super<Arg F> {