2021-07-06 02:50:26 +00:00
|
|
|
#![no_std]
|
2021-07-13 21:41:03 +00:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2021-07-06 02:50:26 +00:00
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has no_std/fn.foo.html '//a/[@href="{{channel}}/core/primitive.u8.html"]' 'u8'
|
|
|
|
//@ has no_std/fn.foo.html '//a/[@href="{{channel}}/core/primitive.u8.html"]' 'primitive link'
|
2021-07-11 02:25:36 +00:00
|
|
|
/// Link to [primitive link][u8]
|
2021-07-06 02:50:26 +00:00
|
|
|
pub fn foo() -> u8 {}
|
2021-07-13 21:41:03 +00:00
|
|
|
|
|
|
|
// Test that all primitives can be linked to.
|
|
|
|
/// [isize] [i8] [i16] [i32] [i64] [i128]
|
|
|
|
/// [usize] [u8] [u16] [u32] [u64] [u128]
|
|
|
|
/// [f32] [f64]
|
|
|
|
/// [char] [bool] [str] [slice] [array] [tuple] [unit]
|
|
|
|
/// [pointer] [reference] [fn] [never]
|
|
|
|
pub fn bar() {}
|