]> git.proxmox.com Git - rustc.git/blob - tests/ui/test-attrs/test-fn-signature-verification-for-explicit-return-type.rs
bump version to 1.75.0+dfsg1-1~bpo12+pve1
[rustc.git] / tests / 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() -> () {}