rust/src/test/ui/diverging-tuple-parts-39485.stderr

26 lines
775 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/diverging-tuple-parts-39485.rs:8:5
2018-08-08 07:28:26 -05:00
|
LL | fn g() {
| - help: try adding a return type: `-> &_`
LL | &panic!() //~ ERROR mismatched types
| ^^^^^^^^^ expected (), found reference
|
= note: expected type `()`
found type `&_`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/diverging-tuple-parts-39485.rs:12:5
2018-08-08 07:28:26 -05:00
|
LL | fn f() -> isize {
| ----- expected `isize` because of return type
LL | (return 1, return 2) //~ ERROR mismatched types
| ^^^^^^^^^^^^^^^^^^^^ expected isize, found tuple
|
= note: expected type `isize`
found type `(!, !)`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.