rust/tests/ui/proc-macro/auxiliary/api/cmp.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
276 B
Rust
Raw Normal View History

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() {
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
}