blob: f6d2a3ecb6d96f70868e17a946c18f0ffde90b97 [file] [log] [blame]
Bruno Cardoso Lopes85f87dd2018-04-30 22:14:29 +00001// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F%S/Inputs/non-ambiguous-enum -fsyntax-only %s -verify
3#import <B/B.h>
4#import <A/A.h>
5
6// expected-no-diagnostics
7
8int foo() {
9 return MyEnumCst;
10}