2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2014-12-10 18:11:15 -06:00
|
|
|
// Test that we handle binder levels correctly when checking whether a
|
|
|
|
// type can implement `Copy`. In particular, we had a bug where we failed to
|
|
|
|
// liberate the late-bound regions from the impl, and thus wound up
|
|
|
|
// searching for an impl of `for<'tcx> Foo<&'tcx T>`. The impl that
|
|
|
|
// exists however is `impl<T> Copy for Foo<T>` and the current rules
|
|
|
|
// did not consider that a match (something I would like to revise in
|
|
|
|
// a later PR).
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
use std::marker::PhantomData;
|
2014-12-10 18:11:15 -06:00
|
|
|
|
2015-03-30 08:38:27 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2014-12-10 18:11:15 -06:00
|
|
|
struct Foo<T> { x: T }
|
|
|
|
|
|
|
|
type Ty<'tcx> = &'tcx TyS<'tcx>;
|
|
|
|
|
|
|
|
enum TyS<'tcx> {
|
2015-02-12 09:29:52 -06:00
|
|
|
Boop(PhantomData<*mut &'tcx ()>)
|
2014-12-10 18:11:15 -06:00
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:27 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2014-12-10 18:11:15 -06:00
|
|
|
enum Bar<'tcx> {
|
|
|
|
Baz(Foo<Ty<'tcx>>)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|