aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/unpin_sneaky.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pin_project/unpin_sneaky.stderr')
-rw-r--r--tests/ui/pin_project/unpin_sneaky.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/ui/pin_project/unpin_sneaky.stderr b/tests/ui/pin_project/unpin_sneaky.stderr
index 0637a66..ab5e794 100644
--- a/tests/ui/pin_project/unpin_sneaky.stderr
+++ b/tests/ui/pin_project/unpin_sneaky.stderr
@@ -1,11 +1,11 @@
-error[E0412]: cannot find type `__Foo` in this scope
+error[E0412]: cannot find type `__S` in this scope
--> $DIR/unpin_sneaky.rs:9:16
|
-9 | impl Unpin for __Foo {} //~ ERROR E0412,E0321
- | ^^^^^ not found in this scope
+9 | impl Unpin for __S {} //~ ERROR E0412,E0321
+ | ^^^ not found in this scope
-error[E0321]: cross-crate traits with a default impl, like `std::marker::Unpin`, can only be implemented for a struct/enum type, not `[type error]`
+error[E0321]: cross-crate traits with a default impl, like `Unpin`, can only be implemented for a struct/enum type, not `[type error]`
--> $DIR/unpin_sneaky.rs:9:1
|
-9 | impl Unpin for __Foo {} //~ ERROR E0412,E0321
- | ^^^^^^^^^^^^^^^^^^^^ can't implement cross-crate trait with a default impl for non-struct/enum type
+9 | impl Unpin for __S {} //~ ERROR E0412,E0321
+ | ^^^^^^^^^^^^^^^^^^ can't implement cross-crate trait with a default impl for non-struct/enum type