deno/tests/044_bad_resource.ts
2019-09-10 00:59:40 -04:00

8 lines
143 B
TypeScript

async function main(): Promise<void> {
const file = await Deno.open("Cargo.toml", "r");
file.close();
await file.seek(10, 0);
}
main();