rust/tests/ui/rfcs/rfc-3348-c-string-literals/auxiliary/count.rs
2023-07-23 10:09:43 +00:00

15 lines
328 B
Rust

// force-host
// edition: 2018
// no-prefer-dynamic
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::TokenStream;
use std::str::FromStr;
#[proc_macro]
pub fn number_of_tokens(_: TokenStream) -> TokenStream {
TokenStream::from_str("c\"\"").unwrap().into_iter().count().to_string().parse().unwrap()
}