2023-05-14 17:56:11 -05:00
|
|
|
use proc_macro::{Punct, Spacing};
|
2020-05-21 19:12:29 -05:00
|
|
|
|
2021-04-29 13:17:44 -05:00
|
|
|
pub fn test() {
|
|
|
|
test_punct_eq();
|
|
|
|
}
|
|
|
|
|
2020-11-01 11:40:30 -06:00
|
|
|
fn test_punct_eq() {
|
2021-04-29 13:20:27 -05:00
|
|
|
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 11:40:30 -06:00
|
|
|
}
|