use yew::prelude::*; fn compile_fail() { html! { <> { () } }; let not_tree = || (); html! {
{ not_tree() }
}; html! { <>{ for (0..3).map(|_| not_tree()) } }; } fn main() {}