brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · ae6b6dc Raw
17 lines · cpp
1struct S {2  S();3  S(int);4  S(const S &);5  ~S();6};7 8void f() {9  try {10  } catch (S e) {11  }12}13 14// RUN: c-index-test -write-pch %t.pch %s15// RUN: c-index-test -test-load-tu-usrs %t.pch local | FileCheck %s16// CHECK: pch-opaque-value.cpp c:pch-opaque-value.cpp@86@F@f#@e Extent=[10:12 - 10:15]17