18 lines
667 B
Plaintext
18 lines
667 B
Plaintext
error: use of a disallowed method `rustc_lint::context::LintContext::span_lint`
|
|
--> $DIR/disallow_span_lint.rs:14:5
|
|
|
|
|
LL | cx.span_lint(lint, span, msg, |_| {});
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::disallowed-methods` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_methods)]`
|
|
|
|
error: use of a disallowed method `rustc_middle::ty::context::TyCtxt::node_span_lint`
|
|
--> $DIR/disallow_span_lint.rs:24:5
|
|
|
|
|
LL | tcx.node_span_lint(lint, hir_id, span, msg, |_| {});
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|