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-common.c (get_priority): Add check for
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
lookup5.C
blob
f3a5d0059fa31fe101f20b4ed0a695a2523609b9
1
// { dg-do assemble }
2
3
struct B {
4
int i;
5
};
6
7
struct D: public B {
8
int i;
9
};
10
11
template <class T>
12
struct D2 : public D {
13
void f() { i = 3; }
14
};