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