blob: 10bd15af0f0f0c97f89f0c5f7b63c0e300528f1e [file]
// Regression test for https://github.com/rust-lang/rust/issues/138510
#![feature(where_clause_attrs)]
#![deny(unused_attributes)]
fn main() {
}
fn test() where
#[repr()]
//~^ ERROR unused attribute
//~| ERROR attribute cannot be used on
(): Sized {
}