blob: 8fbeadf14916aa1ebd939fe60132ec9efb5cf213 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm-only %s -verify
Eli Friedman2ce79bc2009-12-10 08:51:23 +00002// PR5730
3
4struct A { operator int(); float y; };
5struct B : A { double z; };
6void a() { switch(B()) {} }
7