X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FTableGen%2FSuperSubclassSameName.td;h=304c883417fac06fe3f8d1d634489ff3dbb452e8;hb=d168cef6647c3a02e5b22d8d651e344af6b96fe2;hp=ded84de6954524cf1714c5dae249f40486314ce1;hpb=7b6ee7d8f128d005f448a9b70714ed6fefea93a9;p=oota-llvm.git diff --git a/test/TableGen/SuperSubclassSameName.td b/test/TableGen/SuperSubclassSameName.td index ded84de6954..304c883417f 100644 --- a/test/TableGen/SuperSubclassSameName.td +++ b/test/TableGen/SuperSubclassSameName.td @@ -1,10 +1,11 @@ // RUN: tblgen < %s +// XFAIL: vg_leak // Test for template arguments that have the same name as superclass template // arguments. class Arg { int a; } -class TheArg : Arg { let a = 1; } +def TheArg : Arg { let a = 1; } class Super {