[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaObjC / attr-objc-runtime-visible.m
blobb5ec809ff2f581f8576d24dd11c5b5ddf4f6c763
1 // RUN: %clang_cc1 -verify -fsyntax-only  %s
3 __attribute__((objc_runtime_visible))
4 @interface A
5 @end
7 @interface A(X)
8 @end
10 @implementation A(X) // expected-error{{cannot implement a category for class 'A' that is only visible via the Objective-C runtime}}
11 @end
13 @interface B : A
14 @end
16 @implementation B // expected-error{{cannot implement subclass 'B' of a superclass 'A' that is only visible via the Objective-C runtime}}
17 @end