17 lines · c
1// RUN: %clang_cc1 -std=c23 %s -fsyntax-only -verify2// REQUIRES: system-linux3 4 5int urandom[] = {6#embed "/dev/urandom" //expected-error {{device files are not yet supported by '#embed' directive}}7};8int random[] = {9#embed "/dev/random" //expected-error {{device files are not yet supported by '#embed' directive}}10};11int zero[] = {12#embed "/dev/zero" //expected-error {{device files are not yet supported by '#embed' directive}}13};14int null[] = {15#embed "/dev/null" //expected-error {{device files are not yet supported by '#embed' directive}}16};17