aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/cfg/cfg_attr-type-mismatch.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/cfg/cfg_attr-type-mismatch.stderr')
-rw-r--r--tests/ui/cfg/cfg_attr-type-mismatch.stderr8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ui/cfg/cfg_attr-type-mismatch.stderr b/tests/ui/cfg/cfg_attr-type-mismatch.stderr
index 89172a2..366d9c7 100644
--- a/tests/ui/cfg/cfg_attr-type-mismatch.stderr
+++ b/tests/ui/cfg/cfg_attr-type-mismatch.stderr
@@ -1,7 +1,7 @@
error[E0308]: mismatched types
- --> $DIR/cfg_attr-type-mismatch.rs:19:27
+ --> tests/ui/cfg/cfg_attr-type-mismatch.rs:20:27
|
-19 | let _: Pin<&mut u8> = x.f; //~ ERROR E0308
+20 | let _: Pin<&mut u8> = x.f; //~ ERROR E0308
| ------------ ^^^ expected struct `Pin`, found `&mut u8`
| |
| expected due to this
@@ -10,9 +10,9 @@ error[E0308]: mismatched types
found mutable reference `&mut u8`
error[E0308]: mismatched types
- --> $DIR/cfg_attr-type-mismatch.rs:23:22
+ --> tests/ui/cfg/cfg_attr-type-mismatch.rs:24:22
|
-23 | let _: &mut u8 = x.f; //~ ERROR E0308
+24 | let _: &mut u8 = x.f; //~ ERROR E0308
| ------- ^^^
| | |
| | expected `&mut u8`, found struct `Pin`