rust/tests/ui/suggestions/auxiliary/not-object-safe.rs

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

7 lines
78 B
Rust
Raw Normal View History

use std::sync::Arc;
pub trait A {
fn f();
fn f2(self: &Arc<Self>);
}