1// RUN: rm -rf %t.tmp
2// RUN: %clang_cc1 -fsyntax-only -I %S/Inputs/SameHeader -fmodules \
3// RUN:   -fimplicit-module-maps -fmodules-cache-path=%t.tmp %s -verify
4
5// expected-error@Inputs/SameHeader/C.h:3 {{redefinition of 'c'}}
6// expected-note-re@Inputs/SameHeader/B.h:3 {{'{{.*}}C.h' included multiple times, additional include site in header from module 'X.B'}}
7// expected-note@Inputs/SameHeader/module.modulemap:6 {{X.B defined here}}
8// expected-note-re@redefinition-same-header.m:20 {{'{{.*}}C.h' included multiple times, additional include site here}}
9// expected-warning@Inputs/SameHeader/C.h:9 {{typedef requires a name}}
10
11#include "A.h" // maps to a modular
12#include "C.h" // textual include
13