use yew::prelude::*;
fn main() {
let bad_a = html! {
{ "I don't have a href attribute" }
};
let bad_a_2 = html! {
{ "I have a malformed href attribute" }
};
let bad_a_3 = html! {
{ "I have a malformed href attribute" }
};
let bad_img = html! {
};
let misformed_tagname = html! {
};
compile_error!("This macro call exists to deliberately fail the compilation of the test so we can verify output of lints");
}