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