10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4#define CF_OPTIONS(_type, _name) __attribute__((availability(swift, unavailable))) _type _name; enum : _name5 6__attribute__((availability(macOS, unavailable)))7typedef CF_OPTIONS(unsigned, TestOptions) {8 x9};10