2021-04-10 07:43:52 -05:00
|
|
|
#[rustfmt::skip]
|
2021-04-05 23:59:10 -05:00
|
|
|
pub struct Foo {
|
|
|
|
/// 位
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: using tabs in doc comments is not recommended
|
|
|
|
//~| NOTE: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
|
2021-04-10 07:43:52 -05:00
|
|
|
/// ^ Do not remove this tab character.
|
|
|
|
/// It was required to trigger the ICE.
|
2021-04-05 23:59:10 -05:00
|
|
|
pub bar: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|