rust/tests/ui/outer_expn_data.fixed

30 lines
569 B
Rust
Raw Normal View History

2019-08-18 02:32:38 -05:00
// run-rustfix
#![deny(clippy::internal)]
#![feature(rustc_private)]
#[macro_use]
extern crate rustc;
2019-12-03 17:16:03 -06:00
#[macro_use]
2020-01-06 10:39:50 -06:00
extern crate rustc_hir;
#[macro_use]
2019-12-03 17:16:03 -06:00
extern crate rustc_session;
2020-01-06 10:39:50 -06:00
use rustc_hir::Expr;
2019-08-18 02:32:38 -05:00
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
declare_lint! {
pub TEST_LINT,
Warn,
""
}
declare_lint_pass!(Pass => [TEST_LINT]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, _cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
let _ = expr.span.ctxt().outer_expn_data();
}
}
fn main() {}