repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
init
/
array3.C
blob
700b263891fe5dfa8d5c94252c297d0f0653093c
1
// PR c++/6331
2
// Bug: we were generating a badly cv-qualified ARRAY_TYPE in the
3
// synthesized copy constructor for A, which then became the canonical
4
// version, confusing later uses.
5
6
struct A {
7
virtual ~A();
8
const float* f();
9
float fa[3];
10
};
11
12
struct B {
13
B(const A& ai) : a (ai) {}
14
A a;
15
};
16
17
void g (const float pos[3]);
18
19
extern A& a;
20
void h()
21
{
22
g (a.f());
23
}