Files
rust/tests/ui/attributes/unsafe/derive-unsafe-attributes.rs

7 lines
148 B
Rust
Raw Normal View History

2024-04-23 07:50:53 -05:00
#![feature(unsafe_attributes)]
#[derive(unsafe(Debug))] //~ ERROR: traits in `#[derive(...)]` don't accept `unsafe(...)`
struct Foo;
fn main() {}