You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
443 B
13 lines
443 B
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -verify -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-canonical -fsyntax-only %s -Wprivate-module -fmodule-name=A -Rmodule-build
|
|
|
|
// Because of -fmodule-name=A, no module (A or A_Private) is supposed to be
|
|
// built and -Rmodule-build should not produce any output.
|
|
|
|
// expected-no-diagnostics
|
|
|
|
#import <A/a.h>
|
|
#import <A/aprivate.h>
|
|
|
|
int foo() { return APRIVATE; }
|