// RUN: %clangxx_msan -O0 %s -o %t && %run %t #include #include int main(void) { struct stat st; if (fstat(0, &st)) exit(1); if (S_ISBLK(st.st_mode)) exit(0); return 0; }