rust/tests/ui/marker_trait_attr/overlapping-impl-1-modulo-regions.rs

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

18 lines
497 B
Rust
Raw Normal View History

//@ known-bug: #109481
//
// While the `T: Copy` is always applicable when checking
// that the impl `impl<T: Copy> F for T {}` is well formed,
// the old trait solver can only approximate this by checking
// that there are no inference variables in the obligation and
// no region constraints in the evaluation result.
//
// Because of this we end up with ambiguity here.
2021-08-18 09:27:25 -05:00
#![feature(marker_trait_attr)]
#[marker]
pub trait F {}
impl<T: Copy> F for T {}
impl<T: 'static> F for T {}
2021-08-18 09:27:25 -05:00
fn main() {}