xref: /aosp_15_r20/external/clang/test/Lexer/has_attribute_objc_boxable.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -E %s -o - | FileCheck %s
2
3#if __has_attribute(objc_boxable)
4int has_objc_boxable_attribute();
5#endif
6
7// CHECK: has_objc_boxable_attribute
8
9