rust/tests/ui/outer_expn_data.rs

28 lines
540 B
Rust
Raw Normal View History

2019-08-18 02:32:38 -05:00
// run-rustfix
2019-06-08 06:32:43 -05:00
#![deny(clippy::internal)]
#![feature(rustc_private)]
#[macro_use]
extern crate rustc;
2019-12-03 17:16:03 -06:00
#[macro_use]
extern crate rustc_session;
2019-06-08 06:32:43 -05:00
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 06:32:43 -05:00
}
}
fn main() {}