1// RUN: %clangxx -O0 -g %s -o %t && %run %t2 3#include <fcntl.h>4#include <unistd.h>5 6int main(void) { return faccessat(AT_FDCWD, "/root", F_OK, 0); }7