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