summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
blob: 02fee1a00da6d6378b162fc3a8f35faf12737823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass
// ignore-fuchsia Test must be run out-of-process

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