2020-01-09 04:56:38 -06:00
|
|
|
#![feature(negative_impls)]
|
2022-02-02 11:36:45 -06:00
|
|
|
#![feature(with_negative_coherence)]
|
2020-01-08 05:39:38 -06:00
|
|
|
|
2020-01-09 04:56:38 -06:00
|
|
|
pub trait ForeignTrait {}
|
2020-01-08 05:39:38 -06:00
|
|
|
|
2020-01-09 04:56:38 -06:00
|
|
|
impl ForeignTrait for u32 {}
|
2020-01-08 05:39:38 -06:00
|
|
|
impl !ForeignTrait for String {}
|