rust/tests/ui/traits/multidispatch-conditional-impl-not-considered.rs

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

25 lines
349 B
Rust
Raw Normal View History

// run-pass
2014-10-22 03:57:16 +00:00
// Test that we correctly ignore the blanket impl
// because (in this case) `T` does not impl `Clone`.
//
// Issue #17594.
use std::cell::RefCell;
trait Foo {
fn foo(&self) {}
}
impl<T> Foo for T where T: Clone {}
struct Bar;
impl Bar {
fn foo(&self) {}
}
fn main() {
let b = RefCell::new(Bar);
b.borrow().foo();
2014-10-22 03:57:16 +00:00
}