rust/tests/ui/specialization/issue-45814.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
329 B
Rust
Raw Normal View History

//~ ERROR overflow evaluating the requirement `T: Trait<_>`
2022-11-18 07:51:24 -06:00
// revisions: current negative
#![feature(specialization)]
2022-11-18 07:51:24 -06:00
#![cfg_attr(negative, feature(with_negative_coherence))]
#![allow(incomplete_features)]
pub trait Trait<T> {}
default impl<T, U> Trait<T> for U {}
impl<T> Trait<<T as Iterator>::Item> for T {}
fn main() {}