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
c++: Fix tree_contains_struct for TRAIT_EXPR
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup2.C
blob
567f7a43a60a3d8b7fc1a2b6e8eee5a462a8f837
1
// { dg-do assemble }
2
3
struct B {
4
int i;
5
};
6
7
struct D: virtual public B {
8
int i;
9
};
10
11
struct D2 : public D {
12
void f() { i = 3; }
13
};