summaryrefslogtreecommitdiffstats
path: root/src/test/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
blob: ff62d84925f2be110481038ef91511a185d28788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass

#![feature(test)]

// compile-flags: --test
extern crate test;

#[bench]
pub fn bench_explicit_return_type(_: &mut ::test::Bencher) -> () {}

#[test]
pub fn test_explicit_return_type() -> () {}