mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
13 lines
196 B
Rust
13 lines
196 B
Rust
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
|
|
struct S {
|
|
x: u8,
|
|
/// The ID of the parent core
|
|
y: u8,
|
|
}
|
|
//~^^^ ERROR found a documentation comment that doesn't document anything
|
|
|
|
fn main() {}
|