mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 09:38:17 +00:00
15 lines
247 B
Rust
15 lines
247 B
Rust
#![feature(test)]
|
|
extern crate test;
|
|
|
|
#[test]
|
|
fn short_test_name() {}
|
|
|
|
#[test]
|
|
fn this_is_a_really_long_test_name() {}
|
|
|
|
#[bench]
|
|
fn short_bench_name(b: &mut test::Bencher) {}
|
|
|
|
#[bench]
|
|
fn this_is_a_really_long_bench_name(b: &mut test::Bencher) {}
|