mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-03 09:17:50 +00:00
13 lines
196 B
Plaintext
13 lines
196 B
Plaintext
//@ 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() {}
|