2023-11-16 18:13:24 +00:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
extern crate rustc_errors;
|
|
|
|
extern crate rustc_hir;
|
|
|
|
extern crate rustc_lint;
|
|
|
|
extern crate rustc_middle;
|
|
|
|
|
2024-02-29 00:58:51 +00:00
|
|
|
use rustc_errors::{DiagMessage, MultiSpan};
|
2023-11-16 18:13:24 +00:00
|
|
|
use rustc_hir::hir_id::HirId;
|
|
|
|
use rustc_lint::{Lint, LintContext};
|
|
|
|
use rustc_middle::ty::TyCtxt;
|
|
|
|
|
2024-03-07 16:05:53 +00:00
|
|
|
pub fn a(cx: impl LintContext, lint: &'static Lint, span: impl Into<MultiSpan>, msg: impl Into<DiagMessage>) {
|
2024-01-16 03:29:28 +00:00
|
|
|
cx.span_lint(lint, span, msg, |_| {});
|
2023-11-16 18:13:24 +00:00
|
|
|
}
|
|
|
|
|
2024-03-07 16:05:53 +00:00
|
|
|
pub fn b(tcx: TyCtxt<'_>, lint: &'static Lint, hir_id: HirId, span: impl Into<MultiSpan>, msg: impl Into<DiagMessage>) {
|
2024-01-16 05:14:33 +00:00
|
|
|
tcx.node_span_lint(lint, hir_id, span, msg, |_| {});
|
2023-11-16 18:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|