summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/synthetic_auto/crate-local.rs
blob: 58b787dfafc7c48923dc0fca98ca945b8718df52 (plain)
1
2
3
4
5
6
7
8
9
#![feature(auto_traits)]

pub auto trait Banana {}

// @has crate_local/struct.Peach.html
// @has - '//h3[@class="code-header in-band"]' 'impl Banana for Peach'
// @has - '//h3[@class="code-header in-band"]' 'impl Send for Peach'
// @has - '//h3[@class="code-header in-band"]' 'impl Sync for Peach'
pub struct Peach;