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