+2015-06-15 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/51048
+ * decl2.c (no_linkage_error): Do not issue a permerror if the DECL
+ using a local type is pure virtual.
+
2015-06-13 Patrick Palka <ppalka@gcc.gnu.org>
* call.c: Remove comment documenting the long-deleted
TYPE_NAME (t));
}
else if (cxx_dialect >= cxx11)
- permerror (DECL_SOURCE_LOCATION (decl), "%q#D, declared using local type "
- "%qT, is used but never defined", decl, t);
+ {
+ if (TREE_CODE (decl) == VAR_DECL || !DECL_PURE_VIRTUAL_P (decl))
+ permerror (DECL_SOURCE_LOCATION (decl),
+ "%q#D, declared using local type "
+ "%qT, is used but never defined", decl, t);
+ }
else if (TREE_CODE (decl) == VAR_DECL)
warning_at (DECL_SOURCE_LOCATION (decl), 0, "type %qT with no linkage "
"used to declare variable %q#D with linkage", t, decl);
+2015-06-15 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/51048
+ * g++.dg/cpp0x/local-type1.C: New.
+
2015-06-15 Andre Vehreschild <vehre@gmx.de>
PR fortran/44672
2015-06-13 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/65168
- g++.dg/warn/Walways-true-3.C: New test.
+ * g++.dg/warn/Walways-true-3.C: New test.
2015-06-13 Tom de Vries <tom@codesourcery.com>
--- /dev/null
+// PR c++/51048
+// { dg-do compile { target c++11 } }
+
+template<typename X>
+struct A {
+ virtual void DoPush(X const& x) = 0;
+ void Push(X const& x) { DoPush(x); }
+};
+
+template<typename X>
+struct B : A<X> {
+ using A<X>::Push;
+ virtual void DoPush(X const&) { }
+};
+
+int main() {
+ enum S { };
+ B<S>().Push(S());
+}