Reintroduce `extern crate` for non-Cargo dependencies, in tests.

This commit is contained in:
Eduard-Mihai Burtescu 2018-09-15 13:37:21 +03:00
parent fbb6b13140
commit 407ff8d6be
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ use std::collections::Bound;
#[test] #[test]
fn test_overlapping() { fn test_overlapping() {
use clippy_lints::matches::overlapping; use clippy_lints::matches::overlapping;
use syntax::source_map::DUMMY_SP; use crate::syntax::source_map::DUMMY_SP;
let sp = |s, e| clippy_lints::matches::SpannedRange { let sp = |s, e| clippy_lints::matches::SpannedRange {
span: DUMMY_SP, span: DUMMY_SP,