commit | 9894256d73917d382e8b1c948ed012f62d46ab56 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Tue Dec 26 21:24:35 2017 -0500 |
committer | David Tolnay <dtolnay@gmail.com> | Tue Dec 26 21:37:25 2017 -0500 |
tree | f49a461690902c72bd2220888781a761e7eca4ef | |
parent | 40ae067efbbb8112e97065b33abc252f8f391860 [diff] [blame] |
Use proc-macro2's Span instead of our own
diff --git a/tests/test_generics.rs b/tests/test_generics.rs index 96732a9..d24bc6e 100644 --- a/tests/test_generics.rs +++ b/tests/test_generics.rs
@@ -9,7 +9,7 @@ extern crate quote; extern crate proc_macro2; -use proc_macro2::Term; +use proc_macro2::{Span, Term}; mod common;