rust/tests/ui/suggestions/issue-106443-sugg-clone-for-arg.rs

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

24 lines
271 B
Rust
Raw Normal View History

2023-01-02 23:27:49 -06:00
#[derive(Clone)]
struct S;
// without Clone
struct T;
fn foo(_: S) {}
fn test1() {
let s = &S;
foo(s); //~ ERROR mismatched types
}
fn bar(_: T) {}
fn test2() {
let t = &T;
bar(t); //~ ERROR mismatched types
}
fn main() {
test1();
test2();
}