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 PR48484
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr90.C
blob
b6ec24cc849e497462ea8bdd04386343dce03b65
1
// { dg-do compile }
2
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3
// DR90: Should the enclosing class be an "associated class" too?
4
5
struct A {
6
union U {};
7
friend void f(U);
8
};
9
10
struct B {
11
struct S {};
12
friend void f(S);
13
};
14
15
int main() {
16
A::U u;
17
f(u);
18
B::S s;
19
f(s);
20
}