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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup13.C
blob
872c35ff0ce3b3a3160d2f20885c5d3e458b97c3
1
// { dg-do run }
2
// Origin: Mark Mitchell <mark@codesourcery.com>
3
4
int main()
5
{
6
typedef double I;
7
8
struct S1 {
9
typedef char I;
10
11
struct S2;
12
};
13
14
struct S1::S2 {
15
typedef I J;
16
};
17
18
return !(sizeof (S1::S2::J) == 1);
19
}