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