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'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 23:23:52 +00:00
|
|
|
// `T` could be some downstream crate type that specializes (or,
|
|
|
|
// for that matter, `u8`).
|
|
|
|
|
2016-03-11 20:15:28 +00:00
|
|
|
() //~ ERROR mismatched types
|
2016-03-08 23:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn monomorphic() -> () {
|
|
|
|
// Even though we know that `()` is not specialized in a
|
|
|
|
// downstream crate, typeck refuses to project here.
|
|
|
|
|
2016-03-11 20:15:28 +00:00
|
|
|
generic::<()>() //~ ERROR mismatched types
|
2015-12-29 22:01:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-03-08 23:23:52 +00:00
|
|
|
// No error here, we CAN project from `u8`, as there is no `default`
|
|
|
|
// in that impl.
|
2015-12-29 22:01:30 +00:00
|
|
|
let s: String = generic::<u8>();
|
2016-03-08 23:23:52 +00:00
|
|
|
println!("{}", s); // bad news if this all compiles
|
2015-12-29 22:01:30 +00:00
|
|
|
}
|