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