rust/src/test/ui/specialization/specialization-default-projection.rs

37 lines
788 B
Rust
Raw Normal View History

#![feature(specialization)]
// 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
}
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.
let s: String = generic::<u8>();
2016-03-08 17:23:52 -06:00
println!("{}", s); // bad news if this all compiles
}