forked from OSchip/llvm-project
11 lines
245 B
Mathematica
11 lines
245 B
Mathematica
![]() |
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F%S/Inputs/non-ambiguous-enum -fsyntax-only %s -verify
|
||
|
#import <B/B.h>
|
||
|
#import <A/A.h>
|
||
|
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
int foo() {
|
||
|
return MyEnumCst;
|
||
|
}
|