aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Preprocessor/embed-reject-device-files-win.c
blob: 640b59ab7535c59096628bb949aeeea5a7af3161 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -std=c23 %s -fsyntax-only -verify
// REQUIRES: system-windows


int null[] = {
#embed "NUL" limit(1) //expected-error {{device files are not yet supported by '#embed' directive}}
};