rust/tests/rustdoc-html/test_option_check/test.rs
2026-01-07 14:23:30 +01:00

18 lines
236 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;