mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-07 16:36:14 +00:00
10 lines
224 B
Rust
10 lines
224 B
Rust
#![feature(unsafe_attributes)]
|
|
|
|
#[derive(unsafe(Debug))] //~ ERROR: traits in `#[derive(...)]` don't accept `unsafe(...)`
|
|
struct Foo;
|
|
|
|
#[unsafe(derive(Debug))] //~ ERROR: is not an unsafe attribute
|
|
struct Bar;
|
|
|
|
fn main() {}
|