2018-08-02 11:12:50 -05:00
|
|
|
error: cannot return a borrowed ref with #[wasm_bindgen]
|
2019-05-15 14:46:03 -07:00
|
|
|
--> $DIR/bad-signatures.rs:4:17
|
2018-08-02 11:12:50 -05:00
|
|
|
|
|
2019-05-15 14:46:03 -07:00
|
|
|
4 | pub fn foo() -> &u32 {}
|
2018-08-02 11:12:50 -05:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: unsupported pattern in #[wasm_bindgen] imported function
|
2019-05-15 14:46:03 -07:00
|
|
|
--> $DIR/bad-signatures.rs:8:12
|
|
|
|
|
|
|
|
|
8 | fn foo(Foo(x): Foo);
|
|
|
|
| ^^^^^^
|
2018-08-02 11:12:50 -05:00
|
|
|
|
|
|
|
error: cannot return references in #[wasm_bindgen] imports yet
|
2019-05-15 14:46:03 -07:00
|
|
|
--> $DIR/bad-signatures.rs:10:17
|
2018-08-02 11:12:50 -05:00
|
|
|
|
|
2019-05-15 14:46:03 -07:00
|
|
|
10 | fn foo() -> &u32;
|
2018-08-02 11:12:50 -05:00
|
|
|
| ^^^^
|