mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
20 lines
520 B
Rust
20 lines
520 B
Rust
#![feature(rustc_private)]
|
|
#![deny(clippy::internal)]
|
|
#![allow(
|
|
clippy::borrow_deref_ref,
|
|
clippy::unnecessary_operation,
|
|
unused_must_use,
|
|
clippy::missing_clippy_version_attribute
|
|
)]
|
|
|
|
extern crate rustc_span;
|
|
|
|
use rustc_span::symbol::{Ident, Symbol};
|
|
|
|
fn main() {
|
|
Symbol::intern("foo").as_str() == "clippy";
|
|
Symbol::intern("foo").to_string() == "self";
|
|
Symbol::intern("foo").to_ident_string() != "Self";
|
|
&*Ident::empty().as_str() == "clippy";
|
|
"clippy" == Ident::empty().to_string();
|
|
}
|