Sign in
llvm
/
llvm-project
/
41d59a36459ea99ada4819a26072366f77484f87
/
.
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
Posix
/
access.cpp
blob: 8623645f8bdfa5369a6d8c067134be11850b68d5 [
file
] [
log
] [
blame
]
// RUN: %clangxx -O0 -g %s -o %t && %run %t
#include
<unistd.h>
int
main
(
void
)
{
return
access
(
"/dev/null"
,
F_OK
);
}