2018-10-06 16:18:06 +00:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
2018-10-11 10:16:22 +00:00
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
|
2016-08-23 16:09:37 +00:00
|
|
|
/* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
* Copyright 2013 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.
|
|
|
|
*/
|
|
|
|
|
2017-09-18 10:47:33 +00:00
|
|
|
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
// When denying at the crate level, be sure to not get random warnings from the
|
|
|
|
// injected intrinsics by the compiler.
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![feature(associated_type_defaults)]
|
|
|
|
|
|
|
|
//! Some garbage docs for the crate here
|
|
|
|
#![doc="More garbage"]
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
type Typedef = String;
|
|
|
|
pub type PubTypedef = String;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
struct Foo {
|
|
|
|
a: isize,
|
|
|
|
b: isize,
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
pub struct PubFoo {
|
|
|
|
pub a: isize,
|
|
|
|
b: isize,
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub struct PubFoo2 {
|
|
|
|
pub a: isize,
|
|
|
|
pub c: isize,
|
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
mod module_no_dox {}
|
|
|
|
pub mod pub_module_no_dox {}
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub fn foo() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn foo2() {}
|
|
|
|
fn foo3() {}
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)] pub fn foo4() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub trait A {
|
|
|
|
/// dox
|
|
|
|
fn foo(&self);
|
|
|
|
/// dox
|
|
|
|
fn foo_with_impl(&self) {}
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
trait B {
|
|
|
|
fn foo(&self);
|
|
|
|
fn foo_with_impl(&self) {}
|
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
pub trait C {
|
|
|
|
fn foo(&self);
|
|
|
|
fn foo_with_impl(&self) {}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub trait D {
|
|
|
|
fn dummy(&self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub trait E {
|
2017-02-08 13:58:07 +00:00
|
|
|
type AssociatedType;
|
|
|
|
type AssociatedTypeDef = Self;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
/// dox
|
|
|
|
type DocumentedType;
|
|
|
|
/// dox
|
|
|
|
type DocumentedTypeDef = Self;
|
|
|
|
/// dox
|
|
|
|
fn dummy(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn foo() {}
|
|
|
|
fn bar() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PubFoo {
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn foo() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub fn foo1() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn foo2() {}
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)] pub fn foo3() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
trait F {
|
|
|
|
fn a();
|
|
|
|
fn b(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
// should need to redefine documentation for implementations of traits
|
|
|
|
impl F for Foo {
|
|
|
|
fn a() {}
|
|
|
|
fn b(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// It sure is nice if doc(hidden) implies allow(missing_docs), and that it
|
|
|
|
// applies recursively
|
|
|
|
#[doc(hidden)]
|
|
|
|
mod a {
|
|
|
|
pub fn baz() {}
|
|
|
|
pub mod b {
|
|
|
|
pub fn baz() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
enum Baz {
|
|
|
|
BazA {
|
|
|
|
a: isize,
|
|
|
|
b: isize
|
2016-08-23 16:09:37 +00:00
|
|
|
},
|
2017-02-08 13:58:07 +00:00
|
|
|
BarB
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
pub enum PubBaz {
|
|
|
|
PubBazA {
|
|
|
|
a: isize,
|
2016-08-23 16:09:37 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub enum PubBaz2 {
|
|
|
|
/// dox
|
|
|
|
PubBaz2A {
|
|
|
|
/// dox
|
|
|
|
a: isize,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub enum PubBaz3 {
|
|
|
|
PubBaz3A {
|
|
|
|
b: isize
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn baz() {}
|
|
|
|
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
const FOO: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub const FOO1: u32 = 0;
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub const FOO2: u32 = 0;
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub const FOO3: u32 = 0;
|
2017-02-08 13:58:07 +00:00
|
|
|
pub const FOO4: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
static BAR: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub static BAR1: u32 = 0;
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub static BAR2: u32 = 0;
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub static BAR3: u32 = 0;
|
2017-02-08 13:58:07 +00:00
|
|
|
pub static BAR4: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
mod internal_impl {
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub fn documented() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn undocumented1() {}
|
|
|
|
pub fn undocumented2() {}
|
|
|
|
fn undocumented3() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub mod globbed {
|
|
|
|
/// dox
|
|
|
|
pub fn also_documented() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn also_undocumented1() {}
|
|
|
|
fn also_undocumented2() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/// dox
|
|
|
|
pub mod public_interface {
|
|
|
|
pub use internal_impl::documented as foo;
|
|
|
|
pub use internal_impl::undocumented1 as bar;
|
|
|
|
pub use internal_impl::{documented, undocumented2};
|
|
|
|
pub use internal_impl::globbed::*;
|
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
fn main() {}
|