aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/conflict-naming.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pin_project/conflict-naming.stderr')
-rw-r--r--tests/ui/pin_project/conflict-naming.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/ui/pin_project/conflict-naming.stderr b/tests/ui/pin_project/conflict-naming.stderr
deleted file mode 100644
index bbac1eb..0000000
--- a/tests/ui/pin_project/conflict-naming.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0428]: the name `A` is defined multiple times
- --> $DIR/conflict-naming.rs:3:1
- |
-3 | #[pin_project(project = A, project_ref = A)] //~ ERROR E0428,E0308
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- | |
- | `A` redefined here
- | previous definition of the type `A` here
- |
- = note: `A` must be defined only once in the type namespace of this module
- = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error[E0308]: mismatched types
- --> $DIR/conflict-naming.rs:3:1
- |
-3 | #[pin_project(project = A, project_ref = A)] //~ ERROR E0428,E0308
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ in mutability
- |
- = note: expected mutable reference `&mut ()`
- found reference `&()`
- = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)