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 }
|
|
|
|
|
2021-07-25 21:41:57 +00:00
|
|
|
// @has impl_parts/struct.Foo.html '//*[@class="impl has-srclink"]//h3[@class="code-header in-band"]' \
|
2022-08-31 15:05:46 +00:00
|
|
|
// "impl<T: Clone> !AnAutoTrait for Foo<T>where T: Sync,"
|
2021-07-25 21:41:57 +00:00
|
|
|
// @has impl_parts/trait.AnAutoTrait.html '//*[@class="item-list"]//h3[@class="code-header in-band"]' \
|
2022-08-31 15:05:46 +00:00
|
|
|
// "impl<T: Clone> !AnAutoTrait for Foo<T>where T: Sync,"
|
2020-11-24 23:44:04 +00:00
|
|
|
impl<T: Clone> !AnAutoTrait for Foo<T> where T: Sync {}
|