]> git.lizzy.rs Git - rust.git/blob - src/test/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
Rollup merge of #103182 - Nilstrieb:query-desc-cleanup, r=oli-obk
[rust.git] / src / test / ui / test-attrs / test-fn-signature-verification-for-explicit-return-type.rs
1 // run-pass
2 // ignore-fuchsia Test must be run out-of-process
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() -> () {}