forked from LeenkxTeam/Kmake
12 lines
197 B
C
12 lines
197 B
C
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
FILE* file = fopen("/sandbox/../outside.txt", "r");
|
|
assert(file == NULL);
|
|
assert(errno == ENOTCAPABLE);
|
|
|
|
return 0;
|
|
}
|