yew/packages/yew-macro/tests/html_macro/generic-component-fail.stderr
Simon 37401402a1
Allow the use of Rust keywords for element names (#1772)
* 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
2021-02-28 15:49:58 +01:00

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>>> };
| ^^^^^^^^^^^^^^^^^^^^^^^