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 %s
15// RUN: c-index-test -test-load-tu-usrs %t.pch local | FileCheck %s
16// CHECK: pch-opaque-value.cpp c:pch-opaque-value.cpp@86@F@f#@e Extent=[10:12 - 10:15]
17