summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-internal/unnecessary_symbol_str.rs
blob: bbea13af92a546d200c9de0a40a15096ef9ff46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![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();
}