2015-12-30 17:25:31 -06:00
|
|
|
#![feature(specialization)]
|
|
|
|
|
2015-12-29 16:01:30 -06:00
|
|
|
// Make sure we can't project defaulted associated types
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
type Assoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Foo for T {
|
|
|
|
default type Assoc = ();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for u8 {
|
|
|
|
type Assoc = String;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generic<T>() -> <T as Foo>::Assoc {
|
2016-03-08 17:23:52 -06:00
|
|
|
// `T` could be some downstream crate type that specializes (or,
|
|
|
|
// for that matter, `u8`).
|
|
|
|
|
2016-03-11 14:15:28 -06:00
|
|
|
() //~ ERROR mismatched types
|
2016-03-08 17:23:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn monomorphic() -> () {
|
|
|
|
// Even though we know that `()` is not specialized in a
|
|
|
|
// downstream crate, typeck refuses to project here.
|
|
|
|
|
2016-03-11 14:15:28 -06:00
|
|
|
generic::<()>() //~ ERROR mismatched types
|
2015-12-29 16:01:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-03-08 17:23:52 -06:00
|
|
|
// No error here, we CAN project from `u8`, as there is no `default`
|
|
|
|
// in that impl.
|
2015-12-29 16:01:30 -06:00
|
|
|
let s: String = generic::<u8>();
|
2016-03-08 17:23:52 -06:00
|
|
|
println!("{}", s); // bad news if this all compiles
|
2015-12-29 16:01:30 -06:00
|
|
|
}
|