diff gcc/testsuite/g++.dg/other/anon5.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gcc/testsuite/g++.dg/other/anon5.C	Fri Oct 27 22:46:09 2017 +0900
@@ -0,0 +1,27 @@
+// PR c++/34094
+// { dg-do link { target { ! { *-*-darwin* *-*-hpux* *-*-solaris2.* } } } }
+// { dg-options "-gdwarf-2" }
+// Ignore additional message on powerpc-ibm-aix
+// { dg-prune-output "obtain more information" } */
+// Ignore additional messages on Linux/x86 with PIE
+// { dg-prune-output "Bad value" } */
+
+namespace {
+  struct c
+  {
+    static const bool t = 0;
+  };
+}
+
+const bool &f()
+{
+  return c::t;	// { dg-message "\[Uu\]ndefined" "undefined" { target *-*-* } 0 }
+		// Some targets report the error for the previous line, others
+		// don't give line number inforamtion for it, so use line 0.
+}
+
+int main(void)
+{
+  return 0;
+}
+