1 | // RUN: rm -rf %t |
2 | |
3 | // Build PCH using A, with adjacent private module APrivate, which winds up being implicitly referenced |
4 | // RUN: %clang_cc1 -verify -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-with-different-name -emit-pch -o %t-A.pch %s -Wprivate-module |
5 | |
6 | // Use the PCH with no explicit way to resolve APrivate, still pick it up by automatic second-chance search for "A" with "Private" appended |
7 | // RUN: %clang_cc1 -verify -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-with-different-name -include-pch %t-A.pch %s -fsyntax-only -Wprivate-module |
8 | |
9 | // Check the fixit |
10 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-with-different-name -include-pch %t-A.pch %s -fsyntax-only -fdiagnostics-parseable-fixits -Wprivate-module %s 2>&1 | FileCheck %s |
11 | |
12 | // expected-warning@Inputs/implicit-private-with-different-name/A.framework/Modules/module.private.modulemap:1{{expected canonical name for private module 'APrivate'}} |
13 | // expected-note@Inputs/implicit-private-with-different-name/A.framework/Modules/module.private.modulemap:1{{rename 'APrivate' to ensure it can be found by name}} |
14 | // CHECK: fix-it:"{{.*}}module.private.modulemap":{1:18-1:26}:"A_Private" |
15 | |
16 | #ifndef HEADER |
17 | #define HEADER |
18 | #import "A/aprivate.h" |
19 | const int *y = &APRIVATE; |
20 | #endif |
21 | |