blob: 94a6aa448cdc2a0a2fea1c8d9e4c8ec04b4d78df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// RUN: rm -rf %t
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -fmodules -fimplicit-module-maps -I%S/Inputs/import-textual/M -fmodules-cache-path=%t -x objective-c++ %s -verify
// RUN: rm -rf %t
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -fmodules -fimplicit-module-maps -I%S/Inputs/import-textual/M -fmodules-cache-path=%t -x objective-c++ -fmodules-local-submodule-visibility %s -verify
// expected-no-diagnostics
#include "A/A.h"
#include "B/B.h"
typedef aint xxx;
typedef bint yyy;
|