2020-11-22 21:54:31 -06:00
|
|
|
#![feature(auto_traits)]
|
2019-04-25 17:16:57 -05:00
|
|
|
|
|
|
|
pub auto trait Banana {}
|
|
|
|
|
|
|
|
// @has crate_local/struct.Peach.html
|
2022-09-25 15:52:26 -05:00
|
|
|
// @has - '//h3[@class="code-header"]' 'impl Banana for Peach'
|
|
|
|
// @has - '//h3[@class="code-header"]' 'impl Send for Peach'
|
|
|
|
// @has - '//h3[@class="code-header"]' 'impl Sync for Peach'
|
2019-04-25 17:16:57 -05:00
|
|
|
pub struct Peach;
|