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
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ctor10.C
blob
cf10fc5b19ae5d648d4c58a6119f70ec32fbf37a
1
// PR bootstrap/105567
2
// This was breaking with cdtor_returns_this.
3
4
template <class T>
5
struct A
6
{
7
A() { return; }
8
};
9
10
A<int> a;