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
c: fix ICE when forming composite type for two structures / unions [PR117548]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash15.C
blob
e0aad73c73e6ed5232dab9ff79401717bb13cf64
1
// PR c++/13310
2
3
struct A {};
4
5
template <typename> void foo()
6
{
7
A a;
8
a.foo<int>(); // { dg-error "" }
9
}