PR c++/84733
* name-lookup.c (do_pushdecl): Look through cleanp levels.
+2020-03-27 Nathan Sidwell <nathan@acm.org>
+
+ PR c++/84733
+ * name-lookup.c (do_pushdecl): Look through cleanp levels.
+
2020-03-27 Martin Sebor <msebor@redhat.com>
PR c++/94078
/* The binding level we will be pushing into. During local class
pushing, we want to push to the containing scope. */
cp_binding_level *level = current_binding_level;
- while (level->kind == sk_class)
+ while (level->kind == sk_class
+ || level->kind == sk_cleanup)
level = level->level_chain;
/* An anonymous namespace has a NULL DECL_NAME, but we still want to
--- /dev/null
+// { dg-do compile { target c++11 } }
+// PR c++/84733 ICE popping local binding after cleanup region
+
+struct c {
+ ~c();
+} b;
+
+void f() {
+#ifndef OK
+ try {
+ d:
+ ;
+ } catch (int) {
+ }
+#endif
+ decltype(b) a;
+ int e;
+ struct e { } f;
+ e = 5;
+ struct e j;
+}
--- /dev/null
+// { dg-do compile { target c++11 } }
+// PR94257 ICE with silly inline nest.
+
+inline namespace B { // { dg-message "namespace B { }" }
+namespace B { } // { dg-message "namespace B::B { }" }
+}
+
+namespace B { // { dg-error ".namespace B. is ambiguous" }
+}
+
+// But this is fine
+namespace D {
+inline namespace D { }
+}
+namespace D {
+}