]> git.lizzy.rs Git - rust.git/blob - src/test/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
Rollup merge of #102706 - ferrocene:pa-ignore-doc-index, r=jyn514
[rust.git] / src / test / ui / test-attrs / test-fn-signature-verification-for-explicit-return-type.rs
1 // run-pass
2 // needs-unwind (#73509)
3
4 #![feature(test)]
5
6 // compile-flags: --test
7 extern crate test;
8
9 #[bench]
10 pub fn bench_explicit_return_type(_: &mut ::test::Bencher) -> () {}
11
12 #[test]
13 pub fn test_explicit_return_type() -> () {}