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] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
overload
/
reftemp1.C
blob
89f941817ce6bf674cf9918d4228783dedfcf74f
1
// PR c++/25950
2
3
struct X {
4
X();
5
explicit X(const X&);
6
};
7
8
void g(const X&);
9
10
int main()
11
{
12
g(X());
13
}