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
* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
operator3.C
blob
08f5c83f229d9aaaa5439df98be2a18f8a7d6435
1
// PR c++/9454
2
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3
// { dg-do compile }
4
5
template <int> struct A
6
{
7
struct B { operator int (); };
8
struct C : B { operator int (); };
9
};
10
11
A<0> a;