mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
410 B
Plaintext
15 lines
410 B
Plaintext
error: functions used as benches must have signature `fn(&mut Bencher) -> impl Termination`
|
|
--> $DIR/issue-12997-1.rs:6:1
|
|
|
|
|
LL | fn foo() { }
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: functions used as benches must have signature `fn(&mut Bencher) -> impl Termination`
|
|
--> $DIR/issue-12997-1.rs:9:1
|
|
|
|
|
LL | fn bar(x: isize, y: isize) { }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|