about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-dep-info/lib.rs
blob: 1f003f79b1f444fd914098a7b32e481cf238fbe2 (plain)
1
2
3
4
5
6
#![crate_name = "foo"]

#[cfg_attr(doc, doc = include_str!("doc.md"))]
pub struct Bar;

mod bar;