repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
error16.C
blob
1e34647145dab06a952b88ddc434bc1b3e955cdd
1
// PR c++/17763
2
3
template <typename U> struct Outer {
4
struct Inner {};
5
Inner foo();
6
};
7
8
typedef int X;
9
typedef Outer<X> XOuter;
10
11
int main() {
12
Outer<int> ab;
13
ab.foo() == 1; // { dg-error "ab.Outer" }
14
}