mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
28 lines
548 B
Rust
28 lines
548 B
Rust
// run-rustfix
|
|
|
|
#![deny(clippy::internal)]
|
|
#![feature(rustc_private)]
|
|
|
|
extern crate rustc_hir;
|
|
extern crate rustc_lint;
|
|
extern crate rustc_middle;
|
|
#[macro_use]
|
|
extern crate rustc_session;
|
|
use rustc_hir::Expr;
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
declare_lint! {
|
|
pub TEST_LINT,
|
|
Warn,
|
|
""
|
|
}
|
|
|
|
declare_lint_pass!(Pass => [TEST_LINT]);
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for Pass {
|
|
fn check_expr(&mut self, _cx: &LateContext<'tcx>, expr: &'tcx Expr) {
|
|
let _ = expr.span.ctxt().outer_expn().expn_data();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|