872ce47955
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
43 lines
1.7 KiB
Rust
43 lines
1.7 KiB
Rust
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
pub trait MyTrait { fn dummy(&self) { } }
|
|
|
|
// @has foo/struct.Alpha.html '//pre' "pub struct Alpha<A> where A: MyTrait"
|
|
pub struct Alpha<A>(A) where A: MyTrait;
|
|
// @has foo/trait.Bravo.html '//pre' "pub trait Bravo<B> where B: MyTrait"
|
|
pub trait Bravo<B> where B: MyTrait { fn get(&self, B: B); }
|
|
// @has foo/fn.charlie.html '//pre' "pub fn charlie<C>() where C: MyTrait"
|
|
pub fn charlie<C>() where C: MyTrait {}
|
|
|
|
pub struct Delta<D>(D);
|
|
|
|
// @has foo/struct.Delta.html '//*[@class="impl"]//code' \
|
|
// "impl<D> Delta<D> where D: MyTrait"
|
|
impl<D> Delta<D> where D: MyTrait {
|
|
pub fn delta() {}
|
|
}
|
|
|
|
pub struct Echo<E>(E);
|
|
|
|
// @has foo/struct.Echo.html '//*[@class="impl"]//code' \
|
|
// "impl<E> MyTrait for Echo<E> where E: MyTrait"
|
|
// @has foo/trait.MyTrait.html '//*[@id="implementors-list"]//code' \
|
|
// "impl<E> MyTrait for Echo<E> where E: MyTrait"
|
|
impl<E> MyTrait for Echo<E> where E: MyTrait {}
|
|
|
|
pub enum Foxtrot<F> { Foxtrot1(F) }
|
|
|
|
// @has foo/enum.Foxtrot.html '//*[@class="impl"]//code' \
|
|
// "impl<F> MyTrait for Foxtrot<F> where F: MyTrait"
|
|
// @has foo/trait.MyTrait.html '//*[@id="implementors-list"]//code' \
|
|
// "impl<F> MyTrait for Foxtrot<F> where F: MyTrait"
|
|
impl<F> MyTrait for Foxtrot<F> where F: MyTrait {}
|