PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / arg3.C
blob9507c027252791a928c31e10440bfd63a1987ee6
1 // { dg-do compile }
3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 30 Nov 2004 <nathan@codesourcery.com>
6 // PR 17431. copy ctor from user conv
7 // Origin: Volker Reichelt <reichelt@gcc.gnu.org>
9 struct A {};
11 struct B : A
13   B(int);
14   B(B&);  // { dg-message "note" "" { target c++14_down } }
17 void foo(B);                    // { dg-message "initializing" "" { target c++14_down } }
19 void bar()
21   foo(0); // { dg-error "" "" { target c++14_down } }