2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -emit-module -fmodule-name=linkage_merge_left %S/Inputs/module.modulemap
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs -w %s -verify
5 // Test redeclarations of functions where the original declaration is
8 @import linkage_merge_left; // excludes "sub"
11 // expected-error@-1{{conflicting types for 'f0'}}
12 // expected-note@Inputs/linkage-merge-sub.h:1{{previous declaration}}
14 static int f1(float); // okay: considered distinct
15 static int f2(float); // okay: considered distinct
16 extern int f3(float); // okay: considered distinct
19 // expected-error@-1{{redeclaration of 'v0' with a different type: 'float' vs 'int'}}
20 // expected-note@Inputs/linkage-merge-sub.h:6{{previous declaration is here}}