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
Fix typo in test case
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup17.C
blob
6a7510a5d80dc7630fa102149f1d8d551bd3768d
1
// Bug: t->B is resolved to the type instead of the field.
2
3
struct A {
4
struct B { } *B;
5
int i, j, k, l, m;
6
};
7
8
struct A a;
9
10
int
11
main ()
12
{
13
void *p = a.B;
14
}