2018-03-28 15:32:15 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html '//*[@class="docblock"]/p/a[@href="https://doc.rust-lang.org/nightly/std/primitive.u32.html"]' 'u32'
|
|
|
|
// @has foo/struct.Foo.html '//*[@class="docblock"]/p/a[@href="https://doc.rust-lang.org/nightly/std/primitive.i64.html"]' 'i64'
|
2020-09-20 06:18:09 +00:00
|
|
|
// @has foo/struct.Foo.html '//*[@class="docblock"]/p/a[@href="https://doc.rust-lang.org/nightly/std/primitive.i32.html"]' 'std::primitive::i32'
|
|
|
|
// @has foo/struct.Foo.html '//*[@class="docblock"]/p/a[@href="https://doc.rust-lang.org/nightly/std/primitive.str.html"]' 'std::primitive::str'
|
|
|
|
|
2020-10-10 08:20:10 +00:00
|
|
|
// @has foo/struct.Foo.html '//*[@class="docblock"]/p/a[@href="https://doc.rust-lang.org/nightly/std/primitive.i32.html#associatedconstant.MAX"]' 'std::primitive::i32::MAX'
|
2018-03-28 15:32:15 +00:00
|
|
|
|
|
|
|
/// It contains [`u32`] and [i64].
|
2020-09-20 06:18:09 +00:00
|
|
|
/// It also links to [std::primitive::i32], [std::primitive::str],
|
|
|
|
/// and [`std::primitive::i32::MAX`].
|
2018-03-28 15:32:15 +00:00
|
|
|
pub struct Foo;
|