summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-path-self-type-mismatch.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/structs/struct-path-self-type-mismatch.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/structs/struct-path-self-type-mismatch.stderr')
-rw-r--r--tests/ui/structs/struct-path-self-type-mismatch.stderr46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/ui/structs/struct-path-self-type-mismatch.stderr b/tests/ui/structs/struct-path-self-type-mismatch.stderr
new file mode 100644
index 000000000..b55a2cbf7
--- /dev/null
+++ b/tests/ui/structs/struct-path-self-type-mismatch.stderr
@@ -0,0 +1,46 @@
+error[E0308]: mismatched types
+ --> $DIR/struct-path-self-type-mismatch.rs:7:23
+ |
+LL | Self { inner: 1.5f32 };
+ | ^^^^^^ expected `i32`, found `f32`
+
+error[E0308]: mismatched types
+ --> $DIR/struct-path-self-type-mismatch.rs:15:20
+ |
+LL | impl<T> Foo<T> {
+ | - expected type parameter
+LL | fn new<U>(u: U) -> Foo<U> {
+ | - found type parameter
+...
+LL | inner: u
+ | ^ expected type parameter `T`, found type parameter `U`
+ |
+ = note: expected type parameter `T`
+ found type parameter `U`
+ = note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
+ = note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
+
+error[E0308]: mismatched types
+ --> $DIR/struct-path-self-type-mismatch.rs:13:9
+ |
+LL | impl<T> Foo<T> {
+ | - found type parameter
+LL | fn new<U>(u: U) -> Foo<U> {
+ | - ------ expected `Foo<U>` because of return type
+ | |
+ | expected type parameter
+LL | / Self {
+LL | |
+LL | | inner: u
+LL | |
+LL | | }
+ | |_________^ expected type parameter `U`, found type parameter `T`
+ |
+ = note: expected struct `Foo<U>`
+ found struct `Foo<T>`
+ = note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
+ = note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0308`.