]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-50159.rs
Rollup merge of #56439 - JohnGinger:master, r=nikomatsakis
[rust.git] / src / test / rustdoc / issue-50159.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 pub trait Signal {
13     type Item;
14 }
15
16 pub trait Signal2 {
17     type Item2;
18 }
19
20 impl<B, C> Signal2 for B where B: Signal<Item = C> {
21     type Item2 = C;
22 }
23
24 // @has issue_50159/struct.Switch.html
25 // @has - '//code' 'impl<B> Send for Switch<B> where <B as Signal>::Item: Send'
26 // @has - '//code' 'impl<B> Sync for Switch<B> where <B as Signal>::Item: Sync'
27 // @count - '//*[@id="implementations-list"]/*[@class="impl"]' 0
28 // @count - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]' 2
29 pub struct Switch<B: Signal> {
30     pub inner: <B as Signal2>::Item2,
31 }