summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr')
-rw-r--r--vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr b/vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr
new file mode 100644
index 000000000..7ed892ebb
--- /dev/null
+++ b/vendor/wasm-bindgen-macro/ui-tests/wasm-bindgen.stderr
@@ -0,0 +1,19 @@
+error[E0433]: failed to resolve: could not find `convert` in `test`
+ --> ui-tests/wasm-bindgen.rs:37:1
+ |
+37 | #[wasm_bindgen(wasm_bindgen = test)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not find `convert` in `test`
+ |
+ = note: this error originates in the attribute macro `wasm_bindgen` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0425]: cannot find function `future_to_promise` in module `test`
+ --> ui-tests/wasm-bindgen.rs:40:1
+ |
+40 | #[wasm_bindgen(wasm_bindgen_futures = test)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `test`
+ |
+ = note: this error originates in the attribute macro `wasm_bindgen` (in Nightly builds, run with -Z macro-backtrace for more info)
+help: consider importing this function
+ |
+3 | use wasm_bindgen_futures::future_to_promise;
+ |