mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
486 B
Rust
15 lines
486 B
Rust
#![crate_name = "foo"]
|
|
|
|
//@ has 'foo/index.html' '//meta[@name="description"]/@content' \
|
|
// 'API documentation for the Rust `foo` crate.'
|
|
|
|
//@ has 'foo/foo_mod/index.html' '//meta[@name="description"]/@content' \
|
|
// 'API documentation for the Rust `foo_mod` mod in crate `foo`.'
|
|
pub mod foo_mod {
|
|
pub struct __Thing {}
|
|
}
|
|
|
|
//@ has 'foo/fn.foo_fn.html' '//meta[@name="description"]/@content' \
|
|
// 'API documentation for the Rust `foo_fn` fn in crate `foo`.'
|
|
pub fn foo_fn() {}
|