rust/tests/ui/error-codes/E0777.rs

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

8 lines
99 B
Rust
Raw Normal View History

#[derive("Clone")] //~ ERROR E0777
2020-10-02 06:52:03 -05:00
#[derive("Clone
")]
//~^^ ERROR E0777
struct Foo;
fn main() {}