forked from OSchip/llvm-project
14 lines
603 B
C++
14 lines
603 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
|
|
|
|
struct PR10757 {
|
|
bool operator~() = delete; // expected-note {{explicitly deleted}}
|
|
bool operator==(const PR10757&) = delete; // expected-note {{explicitly deleted}}
|
|
operator float();
|
|
};
|
|
int PR10757f() {
|
|
PR10757 a1;
|
|
// FIXME: We get a ridiculous number of "built-in candidate" notes here...
|
|
if(~a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 6 {{built-in candidate}}
|
|
if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 81 {{built-in candidate}}
|
|
}
|