about summary refs log tree commit diff
path: root/tests/ui/test-attrs/issue-12997-2.rs
blob: d2a4202d7bdd3543f5ce811aa230dc536388c7d9 (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: --test

//! Test that makes sure wrongly-typed bench functions are rejected

#![feature(test)]

#[bench]
fn bar(x: isize) { }
//~^ ERROR mismatched types