rust/tests/ui/suggestions/issue-21673.rs

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

14 lines
192 B
Rust
Raw Normal View History

trait Foo {
fn method(&self) {}
}
fn call_method<T: std::fmt::Debug>(x: &T) {
x.method() //~ ERROR E0599
}
fn call_method_2<T>(x: T) {
x.method() //~ ERROR E0599
}
fn main() {}