2018-07-15 14:11:54 -07:00
|
|
|
error[E0308]: mismatched types
|
2019-07-27 15:06:49 +03:00
|
|
|
--> $DIR/issue-12997-2.rs:8:1
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | fn bar(x: isize) { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ expected isize, found mutable reference
|
|
|
|
|
|
|
|
|
= note: expected type `isize`
|
2018-07-20 18:04:02 -07:00
|
|
|
found type `&mut test::Bencher`
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|