summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/short-docblock-codeblock.rs
blob: c6b318b0677cea5f7ebae71bdd13900a21a56787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![crate_name = "foo"]

// @has foo/index.html '//*[@class="item-right docblock-short"]' ""
// @!has foo/index.html '//*[@class="item-right docblock-short"]' "Some text."
// @!has foo/index.html '//*[@class="item-right docblock-short"]' "let x = 12;"

/// ```
/// let x = 12;
/// ```
///
/// Some text.
pub fn foo() {}