blob: 8fbeadf14916aa1ebd939fe60132ec9efb5cf213 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -emit-llvm-only %s -verify
2// PR5730
3
4struct A { operator int(); float y; };
5struct B : A { double z; };
6void a() { switch(B()) {} }
7