mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
342 B
Rust
15 lines
342 B
Rust
// known-bug: #89515
|
|
//
|
|
// The trait solver cannot deal with ambiguous marker trait impls
|
|
// if there are lifetimes involved. As we must not special-case any
|
|
// regions this does not work, even with 'static
|
|
#![feature(marker_trait_attr)]
|
|
|
|
#[marker]
|
|
trait Marker {}
|
|
|
|
impl Marker for &'static () {}
|
|
impl Marker for &'static () {}
|
|
|
|
fn main() {}
|