summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/negative-impl.rs
blob: af19c784d6d0514c85cf4cd8148d94778d5d4090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(negative_impls)]

// @matches negative_impl/struct.Alpha.html '//pre' "pub struct Alpha"
pub struct Alpha;
// @matches negative_impl/struct.Bravo.html '//pre' "pub struct Bravo<B>"
pub struct Bravo<B>(B);

// @matches negative_impl/struct.Alpha.html '//*[@class="impl has-srclink"]//h3[@class="code-header"]' \
// "impl !Send for Alpha"
impl !Send for Alpha {}

// @matches negative_impl/struct.Bravo.html '//*[@class="impl has-srclink"]//h3[@class="code-header"]' "\
// impl<B> !Send for Bravo<B>"
impl<B> !Send for Bravo<B> {}