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
/
conversion
/
op2.C
blob
b400988108d28634a21178630c9c06a9931b4e0a
1
// PR c++/13907
2
3
struct A {
4
operator int & ();
5
operator const int & () const;
6
};
7
8
9
void f(int &);
10
void f(const int &);
11
12
13
int main() {
14
const A x = A();
15
f(x);
16
}