OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [net8.C] - Diff between revs 305 and 338

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 338
// { dg-do assemble  }
// { dg-do assemble  }
// { dg-options "-pedantic-errors" }
// { dg-options "-pedantic-errors" }
class Base {
class Base {
public:
public:
  int foo;
  int foo;
};
};
class Derived : public Base {
class Derived : public Base {
public:
public:
  int bar;
  int bar;
};
};
void func(Base&);                 // { dg-error "passing argument 1" }
void func(Base&);                 // { dg-error "passing argument 1" }
void func2(const Derived& d) {
void func2(const Derived& d) {
  func(d);                              // { dg-error "invalid initialization" }
  func(d);                              // { dg-error "invalid initialization" }
}
}
void
void
foo (int& a)                            // { dg-error "in passing argument 1" }
foo (int& a)                            // { dg-error "in passing argument 1" }
{
{
}
}
int main ()
int main ()
{
{
  int b;
  int b;
  const int*const a = &b;
  const int*const a = &b;
  *a = 10;                              // { dg-error "read-only location" }
  *a = 10;                              // { dg-error "read-only location" }
  foo (*a);                             // { dg-error "invalid initialization" }
  foo (*a);                             // { dg-error "invalid initialization" }
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.