blob: 897927f41569b981c0e6358acf275e6e3c97cb27 (
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() {}
|