]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-48636.rs
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / parser / issues / issue-48636.rs
1 // run-rustfix
2
3 #![allow(dead_code)]
4
5 struct S {
6     x: u8
7     /// The ID of the parent core
8     y: u8,
9 }
10 //~^^^ ERROR found a documentation comment that doesn't document anything
11
12 fn main() {}