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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [conv1.C] - Rev 301

Compare with Previous | Blame | View Log

// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 20 Apr 2003 <nathan@codesourcery.com>

// PR 10337, unneeded warning

class A {
  public:
  A() {}
};

class B : public A {
  public:
  B() {}
  void operator=(const A& b) {}
  void operator=(const B& b) {}
};

class C {
  public:
  C() {}
  operator B &() { return _b; }
  operator const B &() const { return _b; }
  
  B _b;
};

int main() {
  B b;
  C c;
  b = c;
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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