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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-empty6.C
blob
be9a6c6ad8406ef2d0e335c1e5d586f19f635122
1
// PR c++/55993
2
// { dg-do compile { target c++11 } }
3
4
struct A {};
5
struct B:A {};
6
struct C:A {};
7
struct D:B,C {};
8
9
constexpr D d {};
10
constexpr const C& e=d; // OK
11
constexpr auto f=static_cast<const C&>(d); // FAIL