Files
swift-mirror/test/ClangImporter/Inputs/pch-loading-error.h
Alexis Laferrière 6aa0b06dda ClangImporter: silence error on outdated PCH files
Notify clang that we handle outdate PCH files on the client side so
there's no need to display the misleading "fatal error: file '...'
has been modified since the precompiled header '...' was built".

rdar://problem/35036656
2019-07-31 11:27:47 -07:00

6 lines
81 B
C

// Dummy file to test PCH loading errors
int c_func(int x) {
return x + 27;
}