Clang Project

clang_source_code/test/Import/inherited-ctor-init-expr/test.cpp
1// RUN: clang-import-test -dump-ast -expression=%s -import=%S/Inputs/A.cpp | FileCheck %s
2// CHECK: | | | `-CXXInheritedCtorInitExpr
3
4void foo() {
5  C c;
6}
7