Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
test-attrs
/
issue-12997-1.rs
blob: a26a65d8d4403abc0b12dd184ed8a591122b0ece [
file
] [
log
] [
blame
]
//@ compile-flags: --test
//! Test that makes sure wrongly-typed bench functions aren't ignored
#![
feature
(
test
)]
#[
bench
]
fn
foo
()
{
}
//~ ERROR functions used as benches
#[
bench
]
fn
bar
(
x
:
isize
,
y
:
isize
)
{
}
//~ ERROR functions used as benches