]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-12997-1.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / issues / issue-12997-1.rs
1 // compile-flags: --test
2
3 //! Test that makes sure wrongly-typed bench functions aren't ignored
4
5 #![feature(test)]
6
7 #[bench]
8 fn foo() { } //~ ERROR functions used as benches
9
10 #[bench]
11 fn bar(x: isize, y: isize) { } //~ ERROR functions used as benches