summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-missing-doc.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/lint-missing-doc.stderr')
-rw-r--r--src/test/ui/lint/lint-missing-doc.stderr140
1 files changed, 0 insertions, 140 deletions
diff --git a/src/test/ui/lint/lint-missing-doc.stderr b/src/test/ui/lint/lint-missing-doc.stderr
deleted file mode 100644
index d68472d4b..000000000
--- a/src/test/ui/lint/lint-missing-doc.stderr
+++ /dev/null
@@ -1,140 +0,0 @@
-error: missing documentation for a type alias
- --> $DIR/lint-missing-doc.rs:11:1
- |
-LL | pub type PubTypedef = String;
- | ^^^^^^^^^^^^^^^^^^^
- |
-note: the lint level is defined here
- --> $DIR/lint-missing-doc.rs:3:9
- |
-LL | #![deny(missing_docs)]
- | ^^^^^^^^^^^^
-
-error: missing documentation for a struct
- --> $DIR/lint-missing-doc.rs:18:1
- |
-LL | pub struct PubFoo {
- | ^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a struct field
- --> $DIR/lint-missing-doc.rs:19:5
- |
-LL | pub a: isize,
- | ^^^^^^^^^^^^
-
-error: missing documentation for a module
- --> $DIR/lint-missing-doc.rs:30:1
- |
-LL | pub mod pub_module_no_dox {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a function
- --> $DIR/lint-missing-doc.rs:34:1
- |
-LL | pub fn foo2() {}
- | ^^^^^^^^^^^^^
-
-error: missing documentation for a trait
- --> $DIR/lint-missing-doc.rs:52:1
- |
-LL | pub trait C {
- | ^^^^^^^^^^^
-
-error: missing documentation for an associated function
- --> $DIR/lint-missing-doc.rs:53:5
- |
-LL | fn foo(&self);
- | ^^^^^^^^^^^^^^
-
-error: missing documentation for an associated function
- --> $DIR/lint-missing-doc.rs:54:5
- |
-LL | fn foo_with_impl(&self) {}
- | ^^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for an associated type
- --> $DIR/lint-missing-doc.rs:64:5
- |
-LL | type AssociatedType;
- | ^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for an associated type
- --> $DIR/lint-missing-doc.rs:65:5
- |
-LL | type AssociatedTypeDef = Self;
- | ^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for an associated function
- --> $DIR/lint-missing-doc.rs:81:5
- |
-LL | pub fn foo() {}
- | ^^^^^^^^^^^^
-
-error: missing documentation for an enum
- --> $DIR/lint-missing-doc.rs:118:1
- |
-LL | pub enum PubBaz {
- | ^^^^^^^^^^^^^^^
-
-error: missing documentation for a variant
- --> $DIR/lint-missing-doc.rs:119:5
- |
-LL | PubBazA {
- | ^^^^^^^
-
-error: missing documentation for a struct field
- --> $DIR/lint-missing-doc.rs:120:9
- |
-LL | a: isize,
- | ^^^^^^^^
-
-error: missing documentation for a constant
- --> $DIR/lint-missing-doc.rs:151:1
- |
-LL | pub const FOO4: u32 = 0;
- | ^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a static
- --> $DIR/lint-missing-doc.rs:161:1
- |
-LL | pub static BAR4: u32 = 0;
- | ^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a function
- --> $DIR/lint-missing-doc.rs:167:5
- |
-LL | pub fn undocumented1() {}
- | ^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a function
- --> $DIR/lint-missing-doc.rs:168:5
- |
-LL | pub fn undocumented2() {}
- | ^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a function
- --> $DIR/lint-missing-doc.rs:174:9
- |
-LL | pub fn also_undocumented1() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a function
- --> $DIR/lint-missing-doc.rs:189:5
- |
-LL | pub fn extern_fn_undocumented(f: f32) -> f32;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a static
- --> $DIR/lint-missing-doc.rs:194:5
- |
-LL | pub static EXTERN_STATIC_UNDOCUMENTED: u8;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: missing documentation for a foreign type
- --> $DIR/lint-missing-doc.rs:199:5
- |
-LL | pub type ExternTyUndocumented;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: aborting due to 22 previous errors
-