// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s// expected-no-diagnostics// Test when entering f1(), we set the right AnalysisDeclContext to Environment.// Otherwise, block-level expr '1 && a' would not be block-level.int a;voidf1(void) {if(1&& a)return;}voidf2(void) {f1();}