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