summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/conversion-operator-base.cpp
blob: 49796d08a87f60ed0ae2c9058bd080d4aaac92d4 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -emit-llvm-only %s -verify
// PR5730

struct A { operator int(); float y; };
struct B : A { double z; };
void a() { switch(B()) {} }