index-pch.cpp 312 B

12345678
  1. // RUN: c-index-test -write-pch %t.pch -fshort-wchar %s
  2. // RUN: env LIBCLANG_NOTHREADS=1 c-index-test -index-tu %t.pch | FileCheck %s
  3. // CHECK: [indexDeclaration]: kind: variable | name: wideStr
  4. const wchar_t *wideStr = L"123";
  5. // CHECK: [indexDeclaration]: kind: struct | name: __is_void
  6. struct __is_void {};