]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR c++/92859 - ADL and bit-field.
authorJason Merrill <jason@redhat.com>
Wed, 11 Dec 2019 16:48:44 +0000 (11:48 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 11 Dec 2019 16:48:44 +0000 (11:48 -0500)
We also need unlowered_expr_type when considering associated types for ADL.

* name-lookup.c: Use unlowered_expr_type.

From-SVN: r279229

gcc/cp/ChangeLog
gcc/cp/name-lookup.c
gcc/testsuite/g++.dg/overload/bit-field1.C [new file with mode: 0644]

index ad08ff00e383fe0e9a0eb7b3768cd69a266c4eaa..4cb79b2c24ea7ede1b2e2286a84dd8181abd40ba 100644 (file)
@@ -1,5 +1,8 @@
 2019-12-11  Jason Merrill  <jason@redhat.com>
 
+       PR c++/92859 - ADL and bit-field.
+       * name-lookup.c: Use unlowered_expr_type.
+
        PR c++/92446 - deduction of class NTTP.
        * pt.c (deducible_expression): Look through VIEW_CONVERT_EXPR.
 
index e82eaf222c0247f47250ff14e3435292c9fe3fd7..e64cd9a9d66ec7c8d91cc4fe1914ce64cad6b172 100644 (file)
@@ -908,7 +908,7 @@ name_lookup::adl_expr (tree expr)
 
   if (TREE_TYPE (expr) != unknown_type_node)
     {
-      adl_type (TREE_TYPE (expr));
+      adl_type (unlowered_expr_type (expr));
       return;
     }
 
diff --git a/gcc/testsuite/g++.dg/overload/bit-field1.C b/gcc/testsuite/g++.dg/overload/bit-field1.C
new file mode 100644 (file)
index 0000000..318caaa
--- /dev/null
@@ -0,0 +1,18 @@
+// PR c++/92859
+// { dg-do compile { target c++11 } }
+
+void f(int) = delete;
+
+struct ES { 
+  enum E { v }; 
+  friend void f(E) { }
+};
+
+struct S {
+  ES::E e : 1; 
+};
+
+int main() {
+  S s{}; 
+  f (s.e);
+}