Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
// 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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue