mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
16 lines
290 B
Rust
16 lines
290 B
Rust
// Regression test for #108132: do not ICE upon unmet trait alias constraint in generic impl
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
trait IteratorAlias = Iterator;
|
|
|
|
struct Foo<I>(I);
|
|
|
|
impl<I: IteratorAlias> Foo<I> {
|
|
fn f() {}
|
|
}
|
|
|
|
fn main() {
|
|
Foo::<()>::f() //~ trait bounds were not satisfied
|
|
}
|