13 lines
276 B
Rust
Raw Normal View History

2023-05-14 18:56:11 -04:00
use proc_macro::{Punct, Spacing};
2020-05-21 17:12:29 -07:00
2021-04-29 11:17:44 -07:00
pub fn test() {
test_punct_eq();
}
2020-11-01 09:40:30 -08:00
fn test_punct_eq() {
let colon_alone = Punct::new(':', Spacing::Alone);
assert_eq!(colon_alone, ':');
let colon_joint = Punct::new(':', Spacing::Joint);
assert_eq!(colon_joint, ':');
2020-11-01 09:40:30 -08:00
}