blob: 51abf1c721768ec2f099063f64e60de5baec58d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// compile-flags:--test
// normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
// check-pass
#![no_std]
extern crate alloc;
/// ```
/// assert!(true)
/// ```
pub fn f() {}
|