rust/tests/rustdoc/test_option_check/test.rs
2023-01-11 09:32:08 +00:00

19 lines
234 B
Rust

// compile-flags: --test
// check-test-line-numbers-match
pub mod bar;
/// This is a Foo;
///
/// ```
/// println!("baaaaaar");
/// ```
pub struct Foo;
/// This is a Bar;
///
/// ```
/// println!("fooooo");
/// ```
pub struct Bar;