blob: 2b81983691f05e19bf5dac2594485fad81da37f2 [file] [log] [blame]
// RUN: rm -rf %t
// RUN: %clang_cc1 %s -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F%S/Inputs/interface-diagnose-missing-import -verify
// expected-no-diagnostics
@interface NSObject @end
@interface Buggy : NSObject
@end
@import Foo.Bar;
// No diagnostic for inaccessible 'Buggy' definition because we have another definition right in this file.
@interface Buggy (MyExt)
@end