rust/tests/ui/const-generics/defaults/mismatch.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-03-22 18:26:07 -05:00
error[E0308]: mismatched types
--> $DIR/mismatch.rs:7:26
2021-03-22 18:26:07 -05:00
|
LL | let e: Example<13> = ();
| ----------- ^^ expected `Example`, found `()`
2021-03-29 03:32:27 -05:00
| |
| expected due to this
|
= note: expected struct `Example`
found unit type `()`
2021-03-22 18:26:07 -05:00
error[E0308]: mismatched types
--> $DIR/mismatch.rs:10:32
2021-03-22 18:26:07 -05:00
|
LL | let e: Example2<u32, 13> = ();
| ----------------- ^^ expected `Example2`, found `()`
2021-03-29 03:32:27 -05:00
| |
| expected due to this
2021-03-22 18:26:07 -05:00
|
= note: expected struct `Example2`
found unit type `()`
error[E0308]: mismatched types
--> $DIR/mismatch.rs:13:32
2021-03-22 18:26:07 -05:00
|
LL | let e: Example3<13, u32> = ();
| ----------------- ^^ expected `Example3`, found `()`
2021-03-29 03:32:27 -05:00
| |
| expected due to this
2021-03-22 18:26:07 -05:00
|
= note: expected struct `Example3`
found unit type `()`
error[E0308]: mismatched types
--> $DIR/mismatch.rs:16:26
2021-03-22 18:26:07 -05:00
|
LL | let e: Example3<7> = ();
| ----------- ^^ expected `Example3<7>`, found `()`
2021-03-29 03:32:27 -05:00
| |
| expected due to this
2021-03-22 18:26:07 -05:00
|
= note: expected struct `Example3<7>`
2021-03-22 18:26:07 -05:00
found unit type `()`
error[E0308]: mismatched types
--> $DIR/mismatch.rs:19:26
2021-03-22 18:26:07 -05:00
|
LL | let e: Example4<7> = ();
| ----------- ^^ expected `Example4<7>`, found `()`
2021-03-29 03:32:27 -05:00
| |
| expected due to this
|
= note: expected struct `Example4<7>`
found unit type `()`
2021-03-22 18:26:07 -05:00
error: aborting due to 5 previous errors
For more information about this error, try `rustc --explain E0308`.