rust/tests/ui/outer_expn_data.rs

26 lines
499 B
Rust
Raw Normal View History

2019-08-18 09:32:38 +02:00
// run-rustfix
2019-06-08 13:32:43 +02:00
#![deny(clippy::internal)]
#![feature(rustc_private)]
#[macro_use]
extern crate rustc;
use rustc::hir::Expr;
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().expn_data();
2019-06-08 13:32:43 +02:00
}
}
fn main() {}