xref: /llvm-project/clang/test/Modules/diagnose-missing-import.m (revision 7d644e1215b376ec5e915df9ea2eeb56e2d94626)
1// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I%S/Inputs/diagnose-missing-import \
3// RUN:   -Werror=implicit-function-declaration -fsyntax-only \
4// RUN:   -fimplicit-module-maps -verify %s
5@import NCI;
6
7void foo(void) {
8  XYZLogEvent(xyzRiskyCloseOpenParam, xyzRiskyCloseOpenParam); // expected-error {{call to undeclared function 'XYZLogEvent'; ISO C99 and later do not support implicit function declarations}} \
9                                                                  expected-error {{declaration of 'XYZLogEvent' must be imported}} \
10                                                                  expected-error {{declaration of 'xyzRiskyCloseOpenParam' must be imported from module 'NCI.A'}} \
11                                                                  expected-error {{declaration of 'xyzRiskyCloseOpenParam' must be imported from module 'NCI.A'}}
12}
13
14// expected-note@Inputs/diagnose-missing-import/a.h:5 {{declaration here is not visible}}
15// expected-note@Inputs/diagnose-missing-import/a.h:5 {{declaration here is not visible}}
16// expected-note@Inputs/diagnose-missing-import/a.h:6 {{declaration here is not visible}}
17
18