2024-02-16 14:02:50 -06:00
|
|
|
//@ check-pass
|
2023-10-17 18:04:06 -05:00
|
|
|
|
2022-02-02 11:36:45 -06:00
|
|
|
#![feature(negative_impls)]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![feature(with_negative_coherence)]
|
|
|
|
|
|
|
|
#[rustc_strict_coherence]
|
|
|
|
trait Foo {}
|
|
|
|
impl<T> !Foo for &T where T: 'static {}
|
|
|
|
|
|
|
|
#[rustc_strict_coherence]
|
|
|
|
trait Bar {}
|
|
|
|
impl<T: Foo> Bar for T {}
|
|
|
|
impl<T> Bar for &T where T: 'static {}
|
|
|
|
|
|
|
|
fn main() {}
|