'gcc-3_4-branch'.
From-SVN: r94790
--- /dev/null
+// PR c++/19787
+
+struct H {
+ operator char(); // { dg-error "" }
+ operator short(); // { dg-error "" }
+};
+
+int const& ref = H(); // { dg-error "" }
--- /dev/null
+// PR c++/19739
+
+void Dummy() __attribute__(( , ));
+void Dummy() {}
+
+int main (int argc, char **argv)
+{
+ Dummy();
+ return 0;
+}
--- /dev/null
+// PR c++/19762
+
+template<int> struct A { ~A(){} }; // { dg-error "" }
+template A<>::~A(); // { dg-error "" }
--- /dev/null
+/* Test that -trigraphs isn't reordered before -std=gnu99. Bug
+ 18502. */
+/* Origin: Joseph Myers <joseph@codesourcery.com> */
+/* { dg-do compile } */
+/* { dg-options "-std=gnu99 -trigraphs" } */
+
+int a??(2??);