error: This opening fragment does not have a coressponding closing fragment. (hint: try adding `>`)
--> tests/fragments/fragment_fail.rs:6:12
|
6 | rsx! { <> };
| ^^
error: This opening fragment does not have a coressponding closing fragment. (hint: try adding `>`)
--> tests/fragments/fragment_fail.rs:7:14
|
7 | rsx! { <><> };
| ^^
error: This closing fragment does not have a corresponding opening fragment. (hint: try adding `<>`)
--> tests/fragments/fragment_fail.rs:8:19
|
8 | rsx! { <>
> };
| ^^^
error: This closing tag does not have a corresponding opening tag. (hint: try adding `
`)
--> tests/fragments/fragment_fail.rs:9:14
|
9 | rsx! { <>
> };
| ^^^^^^
error: This closing fragment does not have a corresponding opening fragment. (hint: try adding `<>`)
--> tests/fragments/fragment_fail.rs:10:12
|
10 | rsx! { > };
| ^^^
error: This closing tag does not have a corresponding opening tag. (hint: try adding `
`)
--> tests/fragments/fragment_fail.rs:11:23
|
11 | rsx! { };
| ^^^^^^
error: This closing fragment does not have a corresponding opening fragment. (hint: try adding `<>`)
--> tests/fragments/fragment_fail.rs:12:17
|
12 | rsx! { > };
| ^^^
error: Expected a literal or an expression block
--> tests/fragments/fragment_fail.rs:13:17
|
13 | rsx! { > };
| ^
error: Fragment supports only a single `key` attribute
--> tests/fragments/fragment_fail.rs:14:24
|
14 | rsx! { > };
| ^^^
error: Fragment supports only the `key` attribute
--> tests/fragments/fragment_fail.rs:15:13
|
15 | rsx! { > };
| ^^^^^^^^^^
error: Fragment supports only a single `key` attribute
--> tests/fragments/fragment_fail.rs:16:23
|
16 | rsx! { > };
| ^^^^^^^^^^
error: Fragment supports only the `key` attribute
--> tests/fragments/fragment_fail.rs:17:13
|
17 | rsx! { > };
| ^^^^^^^^^^
error: Fragment supports only the `key` attribute
--> tests/fragments/fragment_fail.rs:18:13
|
18 | rsx! { > };
| ^^^^^^^^^^^
error[E0599]: `NonDisplayStruct` doesn't implement `std::fmt::Display`
--> tests/fragments/fragment_fail.rs:19:17
|
19 | rsx! { > };
| ^^^^^^^^^^^^^^^^^^ `NonDisplayStruct` cannot be formatted with the default formatter
|
::: tests/fragments/../utils/non_display_struct.rs
|
| pub struct NonDisplayStruct;
| ---------------------------
| |
| method `to_string` not found for this struct
| doesn't satisfy `NonDisplayStruct: ToString`
| doesn't satisfy `NonDisplayStruct: std::fmt::Display`
|
= note: the following trait bounds were not satisfied:
`NonDisplayStruct: std::fmt::Display`
which is required by `NonDisplayStruct: ToString`
note: the trait `std::fmt::Display` must be implemented
--> $RUST/core/src/fmt/mod.rs
|
| pub trait Display {
| ^^^^^^^^^^^^^^^^^