repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
using4.C
blob
8a6162606c4a4aa60c1c36633663eef5c4598233
1
// PR c++/26256
2
// { dg-do compile }
3
4
struct A
5
{
6
typedef char type;
7
};
8
9
struct B
10
{
11
typedef int type;
12
};
13
14
struct C : A, B
15
{
16
using A::type;
17
type f (type);
18
};
19
20
C::type C::f( type )
21
{
22
type c = 'e';
23
return c;
24
}