summaryrefslogtreecommitdiff
path: root/test/highlight/rust/comment0/in
blob: 88298fed5c005e070cb8ee93d97cf0055c985243 (plain)
1
2
3
4
5
6
7
8
// make sure the color does not break
/// ```
/// # use foo;
/// foo::bar("Hello world");
/// ```
fn bar(s: &str) {
    println!("{}", s);
}