blob: 72aa9edd0f36a57c8f680eba96c7f6a8f495049d [file] [log] [blame]
// 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();
}