Files
c3c/test/test_suite/abi/macho_section_attributes.c3
2023-04-21 17:42:38 +02:00

9 lines
509 B
Plaintext

// #target: macos-x64
int foo @section("foo, 12345678901234567 "); // #error: Mach-o requires the section to be at the most 16 characters
int bar @section("foo, "); // #error: Mach-o requires 'segment,section' as the format, did you type it correctly?
int baz @section("foo"); // #error: Mach-o requires 'segment,section' as the format, did you type it correctly?
int abc @section("foo,b,c,d,e,f"); // #error: Too many parts to the Mach-o section description.
int defg @section("foo,b,c,d");