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
i386: Fix cstorebf4 fp comparison operand [PR117495]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
sizeof8.C
blob
bed68f9d16e86ddb2216452f16b2746634f3987e
1
// { dg-do compile }
2
// Testcase by: bangerth@dealii.org
3
// PR c++/11406: ICE
4
5
template <int> struct S{};
6
7
template <int N> S<sizeof(new double[N])> f() { return S<sizeof(new double[N])>(); }
8
9
template S<sizeof(void*)> f<2>();