OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr152.C] - Rev 693

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR152: explicit copy constructors 

namespace N1 {
  struct X {
    X();                        // { dg-message "note" }
    explicit X(const X&);
  };
  void f(X);                    // { dg-error "initializing" }
  int foo() 
  { 
    X x; 
    f(x);     // { dg-error "matching" "matching" }
    // { dg-message "candidate" "candidate note" { target *-*-* } 14 }
  }
}

namespace N2 {
  template <class T>
  struct X {
    X();                        // { dg-message "note" }
    explicit X(const X&);
  };

  template <class T>
  void f(T ) {}                 // { dg-error "initializing" }
  
  template <class T>
  int foo() 
  { 
    X<T> x; 
    N2::f(x);   // { dg-error "matching" "matching" }
    // { dg-message "candidate" "candidate note" { target *-*-* } 33 }
  }

  template int foo<float>();  // { dg-message "required from here" }
}

Go to most recent revision | 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.