Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm-only %s -verify |
Andy Gibbs | c6e68da | 2012-10-19 12:44:48 +0000 | [diff] [blame] | 2 | // expected-no-diagnostics |
Eli Friedman | d011893 | 2009-12-10 08:51:23 +0000 | [diff] [blame] | 3 | // PR5730 |
4 | |||||
5 | struct A { operator int(); float y; }; | ||||
6 | struct B : A { double z; }; | ||||
7 | void a() { switch(B()) {} } | ||||
8 |