Skip to content

Commit

Permalink
Add Punct PartialEq smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 1, 2020
1 parent b017025 commit 4652032
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion library/proc_macro/tests/test.rs
@@ -1,6 +1,6 @@
#![feature(proc_macro_span)]

use proc_macro::LineColumn;
use proc_macro::{LineColumn, Punct};

#[test]
fn test_line_column_ord() {
Expand All @@ -10,3 +10,11 @@ fn test_line_column_ord() {
assert!(line0_column0 < line0_column1);
assert!(line0_column1 < line1_column0);
}

#[test]
fn test_punct_eq() {
// Good enough if it typechecks, since proc_macro::Punct can't exist in a test.
fn _check(punct: Punct) {
let _ = punct == ':';
}
}

0 comments on commit 4652032

Please sign in to comment.