]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-5835.fixed
New upstream version 1.74.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-5835.fixed
1 #[rustfmt::skip]
2 pub struct Foo {
3 /// 位
4 //~^ ERROR: using tabs in doc comments is not recommended
5 //~| NOTE: `-D clippy::tabs-in-doc-comments` implied by `-D warnings`
6 /// ^ Do not remove this tab character.
7 /// It was required to trigger the ICE.
8 pub bar: u8,
9 }
10
11 fn main() {}