Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-12997-1.rs
blob: 9f808dac362783acb3fa651c525ec10fc028d7e5 [
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