summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-5835.rs
blob: 122bddd6ae67941ab752bed53689d8ba898864c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[rustfmt::skip]
pub struct Foo {
    /// 位	
    //~^ ERROR: using tabs in doc comments is not recommended
    //~| NOTE: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
    ///   ^ Do not remove this tab character.
    ///   It was required to trigger the ICE.
    pub bar: u8,
}

fn main() {}