Skip to content

Commit 4652032

Browse files
committed
Add Punct PartialEq smoke test
1 parent b017025 commit 4652032

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

library/proc_macro/tests/test.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(proc_macro_span)]
22

3-
use proc_macro::LineColumn;
3+
use proc_macro::{LineColumn, Punct};
44

55
#[test]
66
fn test_line_column_ord() {
@@ -10,3 +10,11 @@ fn test_line_column_ord() {
1010
assert!(line0_column0 < line0_column1);
1111
assert!(line0_column1 < line1_column0);
1212
}
13+
14+
#[test]
15+
fn test_punct_eq() {
16+
// Good enough if it typechecks, since proc_macro::Punct can't exist in a test.
17+
fn _check(punct: Punct) {
18+
let _ = punct == ':';
19+
}
20+
}

0 commit comments

Comments
 (0)