blob: 70eefeb329db4ee3c68cbb246f324514bf9d78a9 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/diverging-tuple-parts-39485.rs:8:5
|
LL | &panic!()
| ^^^^^^^^^ expected (), found reference
|
= note: expected type `()`
found type `&_`
help: try adding a return type
|
LL | fn g() -> &_ {
| ^^^^^
help: consider removing the borrow
|
LL | panic!()
| ^^^^^^^^
error[E0308]: mismatched types
--> $DIR/diverging-tuple-parts-39485.rs:12:5
|
LL | fn f() -> isize {
| ----- expected `isize` because of return type
LL | (return 1, return 2)
| ^^^^^^^^^^^^^^^^^^^^ 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`.