diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
commit | dc0db358abe19481e475e10c32149b53370f1a1c (patch) | |
tree | ab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr | |
parent | Releasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip |
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr')
-rw-r--r-- | vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr b/vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr index d08553b1b..55466de06 100644 --- a/vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr +++ b/vendor/wasm-bindgen-macro/ui-tests/missing-catch.stderr @@ -4,14 +4,13 @@ error[E0277]: the trait bound `Result<wasm_bindgen::JsValue, wasm_bindgen::JsVal 6 | pub fn foo() -> Result<JsValue, JsValue>; | ^^^ the trait `FromWasmAbi` is not implemented for `Result<wasm_bindgen::JsValue, wasm_bindgen::JsValue>` | -note: required by a bound in `FromWasmAbi` - --> $WORKSPACE/src/convert/traits.rs - | - | / pub trait FromWasmAbi: WasmDescribe { - | | /// The wasm ABI type that this converts from when coming back out from the - | | /// ABI boundary. - | | type Abi: WasmAbi; -... | - | | unsafe fn from_abi(js: Self::Abi) -> Self; - | | } - | |_^ required by this bound in `FromWasmAbi` + = help: the following other types implement trait `FromWasmAbi`: + *const T + *mut T + Box<[T]> + Box<[f32]> + Box<[f64]> + Box<[i16]> + Box<[i32]> + Box<[i64]> + and 35 others |