2018-08-02 02:59:59 +03:00
|
|
|
error: only public enums are allowed with #[wasm_bindgen]
|
2018-08-20 00:31:35 +03:00
|
|
|
--> $DIR/invalid-enums.rs:6:1
|
2018-08-02 02:59:59 +03:00
|
|
|
|
|
2018-08-20 00:31:35 +03:00
|
|
|
6 | enum A {}
|
2018-08-02 02:59:59 +03:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: only C-Style enums allowed with #[wasm_bindgen]
|
2018-08-20 00:31:35 +03:00
|
|
|
--> $DIR/invalid-enums.rs:10:6
|
2018-08-02 02:59:59 +03:00
|
|
|
|
|
2018-08-20 00:31:35 +03:00
|
|
|
10 | D(u32),
|
2018-08-02 02:59:59 +03:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: enums with #[wasm_bidngen] may only have number literal values
|
2018-08-20 00:31:35 +03:00
|
|
|
--> $DIR/invalid-enums.rs:15:9
|
2018-08-02 02:59:59 +03:00
|
|
|
|
|
2018-08-20 00:31:35 +03:00
|
|
|
15 | X = 1 + 3,
|
2018-08-02 02:59:59 +03:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: enums with #[wasm_bindgen] can only support numbers that can be represented as u32
|
2018-08-20 00:31:35 +03:00
|
|
|
--> $DIR/invalid-enums.rs:20:9
|
2018-08-02 02:59:59 +03:00
|
|
|
|
|
2018-08-20 00:31:35 +03:00
|
|
|
20 | X = 4294967296,
|
2018-08-02 02:59:59 +03:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|