2014-03-18 09:20:30 -04:00
|
|
|
//@ compile-flags: --test
|
|
|
|
|
|
|
|
//! Test that makes sure wrongly-typed bench functions aren't ignored
|
|
|
|
|
2019-07-27 15:06:49 +03:00
|
|
|
#![feature(test)]
|
|
|
|
|
2014-03-18 09:20:30 -04:00
|
|
|
#[bench]
|
|
|
|
fn foo() { } //~ ERROR functions used as benches
|
|
|
|
|
|
|
|
#[bench]
|
2015-01-08 21:54:35 +11:00
|
|
|
fn bar(x: isize, y: isize) { } //~ ERROR functions used as benches
|