Mercurial > hg > CbC > CbC_llvm
view clang/test/Preprocessor/include-header-missing-in-framework.c @ 180:680fa57a2f20
fix compile errors.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 May 2020 17:44:06 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -F %S/Inputs -verify %s // RUN: %clang_cc1 -fsyntax-only -F %S/Inputs -DTYPO_CORRECTION -verify %s // After finding a requested framework, we don't look for the same framework in // a different location even if requested header is not found in the framework. // It can be confusing when there is a framework with required header later in // header search paths. Mention in diagnostics where the header lookup stopped. #ifndef TYPO_CORRECTION #include <TestFramework/NotExistingHeader.h> // expected-error@-1 {{'TestFramework/NotExistingHeader.h' file not found}} // expected-note@-2 {{did not find header 'NotExistingHeader.h' in framework 'TestFramework' (loaded from}} #else // Don't emit extra note for unsuccessfully typo-corrected include. #include <#TestFramework/NotExistingHeader.h> // expected-error@-1 {{'#TestFramework/NotExistingHeader.h' file not found}} #endif // TYPO_CORRECTION