1
Fork 0
rust/tests/ui/derives/deriving-meta-empty-trait-list.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
82 B
Rust
Raw Normal View History

// check-pass
#![deny(unused)]
#[derive()] // OK
struct _Bar;
pub fn main() {}