URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [copy3.C] - Rev 816
Compare with Previous | Blame | View Log
// { dg-do run }// { dg-options "-fno-elide-constructors" }int copies;struct S {S () {}S (const S&) { ++copies; }};S s[1] = { S () };int main () {if (copies != 1)return 1;}
