diff options
| author | bors <bors@rust-lang.org> | 2019-01-24 19:40:31 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-01-24 19:40:31 +0000 |
| commit | f1753522d8f3bb2d218266b4760f7a99f027f5ca (patch) | |
| tree | ea2df48b8bf0a00e8b73134e5c937b32e385f135 | |
| parent | 99c5388ce65568fc8517d401dbae9773a0272840 (diff) | |
| parent | 0bac0149e7d60d1612405145c6e17f128b2675c7 (diff) | |
| download | rust-f1753522d8f3bb2d218266b4760f7a99f027f5ca.tar.gz rust-f1753522d8f3bb2d218266b4760f7a99f027f5ca.zip | |
Auto merge of #3693 - phansch:rustup, r=matthiaskrgr
Rustup Due to https://github.com/rust-lang/rust/pull/51285
| -rw-r--r-- | clippy_lints/src/panic_unimplemented.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/panic_unimplemented.rs b/clippy_lints/src/panic_unimplemented.rs index 61646613b11..f5c3a26e080 100644 --- a/clippy_lints/src/panic_unimplemented.rs +++ b/clippy_lints/src/panic_unimplemented.rs @@ -4,8 +4,8 @@ use rustc::hir::*; use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; use rustc::{declare_tool_lint, lint_array}; use syntax::ast::LitKind; -use syntax::ext::quote::rt::Span; use syntax::ptr::P; +use syntax_pos::Span; /// **What it does:** Checks for missing parameters in `panic!`. /// |
