* g++.old-deja/g++.brendan/crash63.C: Expect a POD warning
* g++.old-deja/g++.brendan/crash64.C: Likewise
* g++.old-deja/g++.brendan/overload8.C: Likewise
From-SVN: r28476
+1999-08-03 Nathan Sidwell <nathan@acm.org>
+
+ * g++.old-deja/g++.brendan/crash63.C: Expect a POD warning
+ * g++.old-deja/g++.brendan/crash64.C: Likewise
+ * g++.old-deja/g++.brendan/overload8.C: Likewise
+
1999-08-03 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/struct1.C: New test.
UnitList (...);
};
-UnitList unit_list (String("keV"));
+UnitList unit_list (String("keV")); // WARNING - cannot pass non-pod
static _type_desc _type_metatype("metatype", sizeof(metatype),
(RF_Ptr)0, 0, 1, 1,
- _im_pers_mem_spec( ((size_t)&((( metatype *)0)-> base_list )) , 1));
+ _im_pers_mem_spec( ((size_t)&((( metatype *)0)-> base_list )) , 1)); // WARNING - cannot pass non-pod
void zxcvbnm(int n,...){n=1;}
int main(){complex c; Complex C;
zxcvbnm(1,c);
-zxcvbnm(1,C);}
+zxcvbnm(1,C);} // WARNING - cannot pass non pod