From a7ea93b978d366a214a9fdad085d1c9a1a0c3abf Mon Sep 17 00:00:00 2001 From: DjDeveloper <43033058+DjDeveloperr@users.noreply.github.com> Date: Tue, 11 Jan 2022 15:01:52 +0530 Subject: fix(ext/ffi): `pointer` type can accept `null` (#13335) --- test_ffi/tests/ffi_types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test_ffi/tests') diff --git a/test_ffi/tests/ffi_types.ts b/test_ffi/tests/ffi_types.ts index 0066e362c..e10cfb894 100644 --- a/test_ffi/tests/ffi_types.ts +++ b/test_ffi/tests/ffi_types.ts @@ -86,7 +86,7 @@ remote.symbols.method14(null); remote.symbols.method14(0); // @ts-expect-error: Invalid argument -remote.symbols.method15(null); +remote.symbols.method15(0); remote.symbols.method15(new Uint16Array(1)); remote.symbols.method15({} as Deno.UnsafePointer); -- cgit v1.2.3