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

#![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() -> () {}