Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
llvm-project
/
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
);
}