blob: d00980e72f5659ad236a1e39eb1b739c18e1f968 [file] [log] [blame]
// compile-flags: --test
//! Test that makes sure wrongly-typed bench functions aren't ignored
#[bench]
fn foo() { } //~ ERROR functions used as benches
#[bench]
fn bar(x: isize, y: isize) { } //~ ERROR functions used as benches