blob: 40c6aaf0fffa49a2fbef6f9b5fb0932d8d430637 [file] [log] [blame]
// RUN: rm -rf %t
// RUN: %clang_cc1 -fmodule-cache-path %t -I %S/Inputs %s -verify
__import_module__ redecl_merge_left;
__import_module__ redecl_merge_right;
@implementation A
- (Super*)init { return self; }
@end
void f(A *a) {
[a init];
}
@class A;
__import_module__ redecl_merge_bottom;
void g(A *a) {
[a init];
}