bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/Posix/access.cpp
2025-02-14 19:21:04 +01:00

5 lines
119 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t
#include <unistd.h>
int main(void) { return access("/dev/null", F_OK); }