rust/tests/ui/rfcs/rfc-3348-c-string-literals/auxiliary/count.rs
2024-02-16 20:02:50 +00:00

15 lines
331 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()
}