2020-11-22 19:54:31 -08:00
|
|
|
#![feature(auto_traits)]
|
2019-04-26 01:16:57 +03:00
|
|
|
|
|
|
|
pub auto trait Banana {}
|
|
|
|
|
|
|
|
// @has crate_local/struct.Peach.html
|
2022-09-25 13:52:26 -07: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-26 01:16:57 +03:00
|
|
|
pub struct Peach;
|