2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
|
2009-11-23 21:46:08 +08:00
|
|
|
|
|
|
|
// PR5518
|
|
|
|
struct A {
|
|
|
|
explicit operator int(); // expected-note{{conversion to integral type}}
|
|
|
|
};
|
|
|
|
|
|
|
|
void x() {
|
|
|
|
switch(A()) { // expected-error{{explicit conversion to}}
|
|
|
|
}
|
|
|
|
}
|