file:
tests/ui/fail/unexpected-attribute.rs
use tide_jsx::{component, html, rsx};
#[component]fn Heading<'title>(title: &'title str) { rsx! { <h1>{title}</h1> }}
fn main() { html! { <Heading t={"Hello world!"} /> };}use tide_jsx::{component, html, rsx};
#[component]fn Heading<'title>(title: &'title str) { rsx! { <h1>{title}</h1> }}
fn main() { html! { <Heading t={"Hello world!"} /> };}