2020-01-09 04:56:38 -06:00
|
|
|
#![feature(negative_impls)]
|
2020-11-22 21:54:31 -06:00
|
|
|
#![feature(auto_traits)]
|
2015-07-19 21:14:56 -05:00
|
|
|
|
2020-11-24 17:44:04 -06:00
|
|
|
pub auto trait AnAutoTrait {}
|
2015-07-19 21:14:56 -05:00
|
|
|
|
|
|
|
pub struct Foo<T> { field: T }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has impl_parts/struct.Foo.html '//*[@class="impl"]//h3[@class="code-header"]' \
|
2022-12-02 12:37:04 -06:00
|
|
|
// "impl<T> !AnAutoTrait for Foo<T>where T: Sync + Clone,"
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has impl_parts/trait.AnAutoTrait.html '//*[@id="implementors-list"]//h3[@class="code-header"]' \
|
2022-12-02 12:37:04 -06:00
|
|
|
// "impl<T> !AnAutoTrait for Foo<T>where T: Sync + Clone,"
|
2020-11-24 17:44:04 -06:00
|
|
|
impl<T: Clone> !AnAutoTrait for Foo<T> where T: Sync {}
|