blob: c3c5c9e527e47da5af9c0b9ee527764adbb5c55a [file] [log] [blame]
Richard Smith76ea1962017-01-26 23:07:59 +00001// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fmodules-local-submodule-visibility \
3// RUN: -fmodule-map-file=%S/Inputs/anon-redecl/module.modulemap \
4// RUN: -I%S/Inputs/anon-redecl \
5// RUN: -verify -std=c++11 %s
6
7#include "a.h"
8#include "b.h"
9#include "c1.h"
10#include "c2.h"
11
12// expected-no-diagnostics
13int x = a({});
14int y = b({});
15int z = c({});