1
Fork 0

Add Punct PartialEq smoke test

This commit is contained in:
David Tolnay 2020-11-01 09:40:30 -08:00
parent b01702578d
commit 4652032c14
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -1,6 +1,6 @@
#![feature(proc_macro_span)]
use proc_macro::LineColumn;
use proc_macro::{LineColumn, Punct};
#[test]
fn test_line_column_ord() {
@ -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 == ':';
}
}