summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/description_default.rs
blob: 21d8e04d3f95a561310077e2b6840a6d3db060d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![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() {}