repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
overload
/
arg2.C
blob
1e39186f7bd0df5572f64681b81d97b56f1af573
1
// { dg-do compile }
2
3
// Copyright (C) 2004 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 30 Nov 2004 <nathan@codesourcery.com>
5
6
// PR 17431. copy ctor from user conv
7
// Origin: Volker Reichelt <reichelt@gcc.gnu.org>
8
9
struct A {};
10
11
struct B : A
12
{
13
B(int);
14
B(A);
15
};
16
17
void foo(B);
18
19
void bar()
20
{
21
foo(0);
22
}