blob: 63c9c9bed545675375df956e72b10c611ed8b118 [file] [log] [blame]
Tim Shen43ee05e82016-11-01 00:19:04 +00001// RUN: %clang_cc1 -fsyntax-only -Wunreachable-code -verify %s
2
3static const bool False = false;
4
5struct A {
6 ~A();
7 operator bool();
8};
9void Bar();
10
11void Foo() {
12 if (False && A()) {
13 Bar(); // expected-no-diagnostics
14 }
15}