blob: 2e74da0a46348e3546e0f9fe2ae60d3501f26e48 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %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}