URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [init/] [array7.C] - Rev 12
Compare with Previous | Blame | View Log
struct S {
virtual void v () {}
void f (const float g[3]);
float h[3];
};
void g () {
S s1, s2;
s1 = s2;
}
void S::f (const float g[3]) {}