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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash9.C
blob
7a568fe054ad1b29ca5740d9c42d4e869b3593fc
1
struct A { };
2
struct B { };
3
4
A f(const B & b) {
5
return A();
6
}
7
8
template<>
9
B f(const A & a) { // { dg-error "" }
10
return B();
11
}
12