1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-display-progress %s 2>&1 | FileCheck %s
3 // Test that inheriting constructors are not analyzed as top-level functions.
5 // CHECK: ANALYZE (Path, Inline_Regular): {{.*}} c()
6 // CHECK: ANALYZE (Path, Inline_Regular): {{.*}} a::a(int)
7 // CHECK-NOT: ANALYZE (Path, Inline_Regular): {{.*}} b::a(int)
14 using a::a
; // Ihnerited ctor.