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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using.C
blob
30e22c067e69cbb95d535f715b569566719beb87
1
// { dg-do compile }
2
3
struct X { };
4
struct Y { };
5
struct Z { };
6
7
struct Base {
8
X f() { return X(); }
9
Y f() const { return Y(); }
10
};
11
12
struct Derived : Base {
13
using Base::f;
14
Z f(int) { return Z(); }
15
};
16
17
int main()
18
{
19
Derived d;
20
X x = d.f(); // { dg-bogus "Y" "" }
21
}
22
23