mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* time for more hygiene * update corresponding tests * while I'm at it * now let's fix the actual issue * fix the publish examples CI while I'm at it * resolve clippy warnings
18 lines
602 B
Plaintext
18 lines
602 B
Plaintext
error: this opening tag has no corresponding closing tag
|
|
--> $DIR/generic-component-fail.rs:56:13
|
|
|
|
|
56 | html! { <Generic<String>> };
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: this closing tag has no corresponding opening tag
|
|
--> $DIR/generic-component-fail.rs:57:30
|
|
|
|
|
57 | html! { <Generic<String>></Generic> };
|
|
| ^^^^^^^^^^
|
|
|
|
error: this closing tag has no corresponding opening tag
|
|
--> $DIR/generic-component-fail.rs:58:30
|
|
|
|
|
58 | html! { <Generic<String>></Generic<Vec<String>>> };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|