]> git.lizzy.rs Git - rust.git/blob - src/test/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
Merge commit '4f142aa1058f14f153f8bfd2d82f04ddb9982388' into clippyup
[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() -> () {}