use rdxl_internals::xhtml::Xhtml; use syn::parse_quote; #[test] fn token_literal1() { let _: Xhtml = parse_quote! {
a b c do
}; } #[test] fn token_literal2() { let _: Xhtml = parse_quote! {
{{ "abc" }}
}; }