[RISCV] Reduce redundancy in vnsrl tests
[llvm-project.git] / clang / test / Modules / interface-diagnose-missing-import.m
blob2b81983691f05e19bf5dac2594485fad81da37f2
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 %s -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F%S/Inputs/interface-diagnose-missing-import -verify
3 // expected-no-diagnostics
4 @interface NSObject @end
5 @interface Buggy : NSObject
6 @end
8 @import Foo.Bar;
10 // No diagnostic for inaccessible 'Buggy' definition because we have another definition right in this file.
11 @interface Buggy (MyExt)
12 @end