]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/search-index.rs
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / test / rustdoc / search-index.rs
CommitLineData
1a4d82fc 1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
1a4d82fc 11#![crate_name = "rustdoc_test"]
223e47cc 12
62682a34
SL
13use std::ops::Deref;
14
85aaf69f 15// @has search-index.js Foo
1a4d82fc 16pub use private::Foo;
223e47cc 17
1a4d82fc
JJ
18mod private {
19 pub struct Foo;
20 impl Foo {
85aaf69f
SL
21 pub fn test_method() {} // @has - test_method
22 fn priv_method() {} // @!has - priv_method
1a4d82fc 23 }
223e47cc 24
1a4d82fc 25 pub trait PrivateTrait {
85aaf69f 26 fn trait_method(&self) {} // @!has - priv_method
1a4d82fc 27 }
223e47cc 28}
62682a34
SL
29
30pub struct Bar;
31
32impl Deref for Bar {
33 // @!has search-index.js Target
34 type Target = Bar;
35 fn deref(&self) -> &Bar { self }
36}