about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/impl-fn-nesting.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-ui/impl-fn-nesting.stderr')
-rw-r--r--src/test/rustdoc-ui/impl-fn-nesting.stderr66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/test/rustdoc-ui/impl-fn-nesting.stderr b/src/test/rustdoc-ui/impl-fn-nesting.stderr
deleted file mode 100644
index 608749af895..00000000000
--- a/src/test/rustdoc-ui/impl-fn-nesting.stderr
+++ /dev/null
@@ -1,66 +0,0 @@
-error: cannot find macro `unknown_macro` in this scope
-  --> $DIR/impl-fn-nesting.rs:32:13
-   |
-LL |             unknown_macro!();
-   |             ^^^^^^^^^^^^^
-
-error[E0405]: cannot find trait `UnknownBound` in this scope
-  --> $DIR/impl-fn-nesting.rs:11:13
-   |
-LL | pub fn f<B: UnknownBound>(a: UnknownType, b: B) {
-   |             ^^^^^^^^^^^^ not found in this scope
-
-error[E0412]: cannot find type `UnknownType` in this scope
-  --> $DIR/impl-fn-nesting.rs:11:30
-   |
-LL | pub fn f<B: UnknownBound>(a: UnknownType, b: B) {
-   |                              ^^^^^^^^^^^ not found in this scope
-
-error[E0405]: cannot find trait `UnknownTrait` in this scope
-  --> $DIR/impl-fn-nesting.rs:14:10
-   |
-LL |     impl UnknownTrait for ValidType {}
-   |          ^^^^^^^^^^^^ not found in this scope
-
-error[E0405]: cannot find trait `UnknownTrait` in this scope
-  --> $DIR/impl-fn-nesting.rs:15:27
-   |
-LL |     impl<T: UnknownBound> UnknownTrait for T {}
-   |                           ^^^^^^^^^^^^ not found in this scope
-
-error[E0405]: cannot find trait `UnknownBound` in this scope
-  --> $DIR/impl-fn-nesting.rs:15:13
-   |
-LL |     impl<T: UnknownBound> UnknownTrait for T {}
-   |             ^^^^^^^^^^^^ not found in this scope
-
-error[E0412]: cannot find type `UnknownType` in this scope
-  --> $DIR/impl-fn-nesting.rs:18:25
-   |
-LL |     impl ValidTrait for UnknownType {}
-   |                         ^^^^^^^^^^^ not found in this scope
-
-error[E0405]: cannot find trait `UnknownBound` in this scope
-  --> $DIR/impl-fn-nesting.rs:20:53
-   |
-LL |     impl ValidTrait for ValidType where ValidTrait: UnknownBound {}
-   |                                                     ^^^^^^^^^^^^ not found in this scope
-
-error[E0412]: cannot find type `UnknownType` in this scope
-  --> $DIR/impl-fn-nesting.rs:25:21
-   |
-LL |         type Item = UnknownType;
-   |                     ^^^^^^^^^^^ not found in this scope
-
-error[E0412]: cannot find type `UnknownType` in this scope
-  --> $DIR/impl-fn-nesting.rs:44:37
-   |
-LL |             pub fn doubly_nested(c: UnknownType) {
-   |                                     ^^^^^^^^^^^ not found in this scope
-
-error: Compilation failed, aborting rustdoc
-
-error: aborting due to 11 previous errors
-
-Some errors have detailed explanations: E0405, E0412.
-For more information about an error, try `rustc --explain E0405`.