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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-34051.C
blob
d0a8b951a029e298fdb7a543aad2e888279069cf
1
// { dg-do compile { target c++11 } }
2
struct A
3
{
4
operator int();
5
};
6
7
template <typename... T> struct B : A
8
{
9
using A::operator T; // { dg-error "parameter packs|T" }
10
};
11
12
B<int> b;