view clang/test/Import/struct-and-var/test.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900 (2020-02-13)
parents
children
line wrap: on
line source
// RUN: clang-import-test -dump-ast --import %S/Inputs/S1.cpp --import %S/Inputs/S2.cpp -expression %s | FileCheck %s

// CHECK: {{^`-CXXRecordDecl}}
// CHECK-SAME: Inputs/S2.cpp:1:1, line:3:1> line:1:8 struct F

void expr() {
  struct F f;
  int x = f.a;
}