mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
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;
|
||
|
}
|