use yew::prelude::*; fn compile_fail() { // missing closing tag html! { <> }; html! { <><> }; html! { <><> }; // missing starting tag html! { }; html! { }; // multiple root nodes html! { <><> }; // invalid child content html! { <>invalid }; // no key value html! { }; // wrong closing tag html! { }; // multiple keys html! { }; // invalid prop html! { }; } fn main() {}