xref: /llvm-project/clang/test/Preprocessor/embed_single_entity.c (revision 41c6e4379204ffc00948edd33d59ba5ebbceaba2)
1 // RUN: %clang_cc1 %s -fsyntax-only -std=c23 --embed-dir=%S/Inputs -verify
2 
3 const char data =
4 #embed <single_byte.txt>
5 ;
6 _Static_assert('b' == data);
7 // expected-no-diagnostics
8