enum_base_test.def 678 B

123456789101112131415161718
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // Note that this is an X-macro header. It does not use `#include` guards, and
  6. // instead is designed to be `#include`ed after the x-macro is defined in order
  7. // for its inclusion to expand to the desired output.
  8. #ifndef CARBON_ENUM_BASE_TEST_KIND
  9. #error "Must define the x-macro to use this file."
  10. #define CARBON_ENUM_BASE_TEST_KIND(Name)
  11. #endif
  12. CARBON_ENUM_BASE_TEST_KIND(Beep)
  13. CARBON_ENUM_BASE_TEST_KIND(Boop)
  14. CARBON_ENUM_BASE_TEST_KIND(Burr)
  15. #undef CARBON_ENUM_BASE_TEST_KIND