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 13:52:03 +02:00
#[derive("Clone
")]
//~^^ ERROR E0777
struct Foo;
fn main() {}