]> git.proxmox.com Git - rustc.git/blob - tests/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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() -> () {}