xref: /minix3/external/bsd/llvm/dist/clang/test/Index/preamble-reparse-import.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: c-index-test -write-pch %t.h.pch -x objective-c %s-2.h
2*f4a2713aSLionel Sambuc// RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1 \
3*f4a2713aSLionel Sambuc// RUN:   c-index-test -test-load-source-reparse 3 local %s -include %t.h
4*f4a2713aSLionel Sambuc// RUN: c-index-test -write-pch %t.h.pch -x objective-c %s-3.h
5*f4a2713aSLionel Sambuc// RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1 \
6*f4a2713aSLionel Sambuc// RUN:   c-index-test -test-load-source-reparse 3 local %s -include %t.h
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambuc#import "preamble-reparse-import.m-1.h"
9*f4a2713aSLionel Sambuc
10*f4a2713aSLionel Sambucvoid foo();
11*f4a2713aSLionel Sambuc#import "preamble-reparse-import.m-2.h"
12*f4a2713aSLionel Sambuc#import "preamble-reparse-import.m-1.h"
13