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++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
operator1.C
blob
3a534d182cd13e9e6be25e8018203806a41962af
1
/* PR c++/8982 */
2
/* { dg-do compile } */
3
namespace foo {
4
template<class X>
5
int operator- (X x);
6
}
7
8
int main() {
9
using foo::operator-; // syntax error under gcc 3.2
10
}
11