summaryrefslogtreecommitdiffstats
path: root/tests/ui/marker_trait_attr/overlapping-impl-1-modulo-regions.rs
blob: 97a814f51eec58278b8e4a1d155148cf1919d00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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.
#![feature(marker_trait_attr)]

#[marker]
pub trait F {}
impl<T: Copy> F for T {}
impl<T: 'static> F for T {}

fn main() {}