2018-09-06 12:41:12 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2018-09-06 12:41:12 +00:00
|
|
|
|
2020-05-17 08:22:48 +00:00
|
|
|
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
|
2015-12-30 23:25:31 +00:00
|
|
|
|
2015-12-29 22:01:30 +00:00
|
|
|
// Make sure we *can* project non-defaulted associated types
|
2020-12-28 17:15:16 +00:00
|
|
|
// cf ui/specialization/specialization-default-projection.rs
|
2015-12-29 22:01:30 +00:00
|
|
|
|
2016-03-11 20:15:28 +00:00
|
|
|
// First, do so without any use of specialization
|
|
|
|
|
2015-12-29 22:01:30 +00:00
|
|
|
trait Foo {
|
|
|
|
type Assoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Foo for T {
|
|
|
|
type Assoc = ();
|
|
|
|
}
|
|
|
|
|
2016-03-11 20:15:28 +00:00
|
|
|
fn generic_foo<T>() -> <T as Foo>::Assoc {
|
2015-12-29 22:01:30 +00:00
|
|
|
()
|
|
|
|
}
|
|
|
|
|
2016-03-11 20:15:28 +00:00
|
|
|
// Next, allow for one layer of specialization
|
|
|
|
|
|
|
|
trait Bar {
|
|
|
|
type Assoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Bar for T {
|
|
|
|
default type Assoc = ();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Clone> Bar for T {
|
|
|
|
type Assoc = u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generic_bar_clone<T: Clone>() -> <T as Bar>::Assoc {
|
|
|
|
0u8
|
|
|
|
}
|
|
|
|
|
2015-12-29 22:01:30 +00:00
|
|
|
fn main() {
|
|
|
|
}
|