blob: adaeb85bce17c3a0b4e97fa5a781b6e3d3b8f373 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
Douglas Gregor84fb9c02009-11-23 13:46:08 +00002
3// PR5518
4struct A {
5 explicit operator int(); // expected-note{{conversion to integral type}}
6};
7
8void x() {
9 switch(A()) { // expected-error{{explicit conversion to}}
10 }
11}