mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
496 B
Rust
18 lines
496 B
Rust
// 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() {}
|