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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [defaulted14.C] - Blame information for rev 693

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// PR c++/39866
2
// { dg-options "-std=c++0x" }
3
 
4
struct A {
5
  A& operator=(const A&) = delete; // { dg-bogus "" }
6
 
7
  void operator=(int) {}        // { dg-message "" }
8
  void operator=(char) {}       // { dg-message "" }
9
};
10
 
11
struct B {};
12
 
13
int main()
14
{
15
  A a;
16
  a = B();              // { dg-error "no match" }
17
  // { dg-message "candidate" "candidate note" { target *-*-* } 16 }
18
  a = 1.0;              // { dg-error "ambiguous" }
19
  // { dg-message "candidate" "candidate note" { target *-*-* } 18 }
20
}

powered by: WebSVN 2.1.0

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