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
[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
elide4.C
blob
f85d6eea40a567b9276df8d9203584eeee24f3d1
1
// PR c++/67557
2
3
class A {
4
public:
5
A m_fn1();
6
A(A const &);
7
int *L;
8
int ref;
9
};
10
struct B : A {
11
B();
12
};
13
B::B() : A((0, m_fn1())) {}