blob: 4a035d7ad8f91ed163a82f893326355ffde07da8 [file] [log] [blame]
Argyrios Kyrtzidis819f9ff2015-08-05 17:23:59 +00001// RUN: c-index-test -write-pch %t.pch -x c %S/Inputs/c-index-pch.h
2// RUN: c-index-test -write-pch %t.ast -Xclang -include-pch -Xclang %t.pch -x c %s
Ted Kremenekef3339b2009-11-17 18:09:14 +00003// RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s
Douglas Gregor16bef852009-10-16 20:01:17 +00004// ALL: FunctionDecl=foo
5// ALL: VarDecl=bar
6// ALL: FunctionDecl=wibble
7// ALL: FunctionDecl=wonka
Douglas Gregord2eb58a2009-10-16 18:18:30 +00008void wibble(int i);
Douglas Gregor16bef852009-10-16 20:01:17 +00009void wonka(float);