mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
Add a test
This commit is contained in:
parent
49ba323c8d
commit
103771ce57
23
src/test/ui/specialization/issue-70442.rs
Normal file
23
src/test/ui/specialization/issue-70442.rs
Normal file
@ -0,0 +1,23 @@
|
||||
#![feature(specialization)]
|
||||
|
||||
// check-pass
|
||||
|
||||
trait Trait {
|
||||
type Assoc;
|
||||
}
|
||||
|
||||
impl<T> Trait for T {
|
||||
default type Assoc = bool;
|
||||
}
|
||||
|
||||
// This impl inherits the `Assoc` definition from above and "locks it in", or finalizes it, making
|
||||
// child impls unable to further specialize it. However, since the specialization graph didn't
|
||||
// correctly track this, we would refuse to project `Assoc` from this impl, even though that should
|
||||
// happen for items that are final.
|
||||
impl Trait for () {}
|
||||
|
||||
fn foo<X: Trait<Assoc=bool>>() {}
|
||||
|
||||
fn main() {
|
||||
foo::<()>(); // `<() as Trait>::Assoc` is normalized to `bool` correctly
|
||||
}
|
Loading…
Reference in New Issue
Block a user