rust/src/test/ui/issues/issue-12997-2.stderr

13 lines
352 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0308]: mismatched types
--> $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`.