2022-10-23 13:18:45 +00:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
#![allow(unused)]
|
|
|
|
#![warn(clippy::unnecessary_def_path)]
|
|
|
|
|
|
|
|
extern crate rustc_hir;
|
|
|
|
|
|
|
|
use rustc_hir::LangItem;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
const DEREF_TRAIT: [&str; 4] = ["core", "ops", "deref", "Deref"];
|
|
|
|
const DEREF_MUT_TRAIT: [&str; 4] = ["core", "ops", "deref", "DerefMut"];
|
|
|
|
const DEREF_TRAIT_METHOD: [&str; 5] = ["core", "ops", "deref", "Deref", "deref"];
|
|
|
|
|
2023-09-27 03:56:38 +00:00
|
|
|
// Don't lint, not a diagnostic or language item
|
2023-10-21 11:22:39 +00:00
|
|
|
const OPS_MOD: [&str; 2] = ["core", "ops"];
|
2022-10-23 13:18:45 +00:00
|
|
|
}
|