blob: f8eac6251e2c040e87f8f85b14f86e8c9433c863 [file] [log] [blame] [edit]
// Issue: 100461, Try to give a helpful diagnostic even when the next struct field has an attribute.
//@ run-rustfix
struct Feelings {
owo: bool
//~^ ERROR expected `,`, or `}`, found `#`
#[allow(unused)]
uwu: bool,
}
impl Feelings {
#[allow(unused)]
fn hmm(&self) -> bool {
self.owo
}
}
fn main() { }