1 #include <assert.h> 2 #include <errno.h> 3 #include <stdio.h> 4 main()5 int main() { 6 FILE* file = fopen("/sandbox/../outside.txt", "r"); 7 assert(file == NULL); 8 assert(errno == ENOTCAPABLE); 9 10 return 0; 11 } 12