diff options
Diffstat (limited to 'tests/specs/check/unstable_suggestion/main.ts')
-rw-r--r-- | tests/specs/check/unstable_suggestion/main.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/specs/check/unstable_suggestion/main.ts b/tests/specs/check/unstable_suggestion/main.ts index 02a5cfbdf..c5c7a82e1 100644 --- a/tests/specs/check/unstable_suggestion/main.ts +++ b/tests/specs/check/unstable_suggestion/main.ts @@ -2,4 +2,7 @@ /// <reference lib="deno.ns" /> // unstable apis removed here, so should error -Deno.dlopen("path/to/lib", {}); +Deno.listenDatagram({ + port: 3000, + transport: "udp", +}); |