URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [ref1.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 5 Mar 2004 <nathan@codesourcery.com>
// Origin: schmid@snake.iap.physik.tu-darmstadt.de
// Bug 14397: Bogus access error.
struct S {
S (int);
S(S const&);
private:
S(S&);
};
S foo()
{
int result = 0;
S s ((0,S (result)));
return S (result);
}
Go to most recent revision | Compare with Previous | Blame | View Log