repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-87506.C
blob
62d2ddcdcf5f2918f89c325967606c076b0898b7
1
// PR c++/87506
2
// { dg-do compile { target c++11 } }
3
4
struct A {};
5
struct B { constexpr B (const A) {} };
6
struct C : B { using B::B; };
7
8
void
9
foo ()
10
{
11
C c (A{});
12
}