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
[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
access7.C
blob
4e2db1479b7501e262e9fcb4155e852567c37da1
1
struct B {
2
static void f();
3
};
4
5
template <typename T>
6
struct D : private B {
7
void g() {
8
f();
9
}
10
};
11
12
void h() {
13
D<int> d;
14
d.g();
15
}