rust/tests/ui/specialization/specialization-translate-pr...

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

33 lines
690 B
Rust
Raw Normal View History

// run-pass
2016-03-12 04:15:28 +08:00
// Ensure that provided items are inherited properly even when impls vary in
// type parameters *and* rely on projections, and the type parameters are input
// types on the trait.
2020-05-17 16:22:48 +08:00
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
trait Trait<T> {
fn convert(&self) -> T;
}
trait WithAssoc {
type Item;
fn as_item(&self) -> &Self::Item;
}
impl<T, U> Trait<U> for T where T: WithAssoc<Item=U>, U: Clone {
fn convert(&self) -> U {
self.as_item().clone()
}
}
impl WithAssoc for u8 {
type Item = u8;
fn as_item(&self) -> &u8 { self }
}
impl Trait<u8> for u8 {}
fn main() {
assert!(3u8.convert() == 3u8);
}