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
/
pr85070.C
blob
5083cbd494019fad0bcd1b618299a8c99fe28a4b
1
// { dg-do compile { target c++11 } }
2
3
struct A;
4
5
struct B
6
{
7
constexpr A & operator= (const A &);
8
};
9
10
struct A : B
11
{
12
using B::operator=;
13
} a { a = a };