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
testsuite: i386: adapt to -std=gnu23 default change
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr84630.C
blob
7d6361b21ea924a615ede6b0ee8f13cc799168d3
1
// PR c++/84630
2
// { dg-do compile { target c++11 } }
3
4
template <typename...> struct c {
5
template <int> __attribute__((noinline([] {}))) int b(); // { dg-error "wrong number of arguments" }
6
};
7
c<> a;
8
int i = a.b<42>();