mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
25 lines
349 B
Rust
25 lines
349 B
Rust
// run-pass
|
|
// 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();
|
|
}
|