brintos

brintos / llvm-project-archived public Read only

0
0
Text · 218 B · 79ca1e5 Raw
9 lines · c
1// RUN: %clang_cc1 -std=c23 %s -fsyntax-only --embed-dir=%S/Inputs -verify2// expected-no-diagnostics3 4const char data[] = {5#embed "single_byte.txt"6};7static_assert(sizeof(data) == 1);8static_assert('a' == data[0]);9