URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nsdmi-defer4.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-options -std=c++0x }
// { dg-do run }
struct A
{
int i = 42;
int j = f();
int k = this->f();
int f() { return i++; }
};
A a;
int main()
{
if (a.j != 42 || a.k != 43 || a.i != 44)
__builtin_abort();
}