Files
rust/tests/ui/attributes/empty-repr.rs
Jonathan Brouwer 4bb7bf64e0 Update uitests
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-08-14 18:18:42 +02:00

15 lines
217 B
Rust

// 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
(): Sized {
}