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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
error2.C
blob
eb966362ccbb869ea04ebc985873fc9ca1363f5d
1
// PR c++/38656
2
// { dg-do compile { target c++11 } }
3
4
template<int> int foo();
5
6
template<typename F, int N> void bar(F f)
7
{
8
f((foo<N>()=0)...); // { dg-error "pattern '\\(foo\\<N\\>\\)\\(\\)=0'" }
9
}