rust/tests/rustdoc-ui/show-coverage-json.rs

14 lines
204 B
Rust

//@ compile-flags: -Z unstable-options --show-coverage --output-format=json
//@ check-pass
mod bar {
/// a
///
/// ```
/// let x = 0;
/// ```
pub struct Foo;
}
pub use bar::Foo;