brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · ec4f962 Raw
12 lines · cpp
1#include "Inputs/pch-through1.h"2static int bar() { return 42; }3#include "Inputs/pch-through2.h"4int pch();5#pragma hdrstop6 7//expected-no-diagnostics8int main()9{10  return pch() + through1(0) + through2(-1) + bar() - 42;11}12