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