wasm-bindgen/crates/macro/ui-tests/bad-signatures.stderr

21 lines
505 B
Plaintext
Raw Normal View History

error: cannot return a borrowed ref with #[wasm_bindgen]
2019-01-02 19:35:01 +03:00
--> $DIR/bad-signatures.rs:8:17
|
2019-01-02 19:35:01 +03:00
8 | pub fn foo() -> &u32 {}
| ^^^^
error: unsupported pattern in #[wasm_bindgen] imported function
2019-01-02 19:35:01 +03:00
--> $DIR/bad-signatures.rs:12:12
|
2019-01-02 19:35:01 +03:00
12 | fn foo(Foo(x): Foo);
| ^^^^^^
error: cannot return references in #[wasm_bindgen] imports yet
2019-01-02 19:35:01 +03:00
--> $DIR/bad-signatures.rs:14:17
|
2019-01-02 19:35:01 +03:00
14 | fn foo() -> &u32;
| ^^^^
error: aborting due to 3 previous errors