Files
2026-01-07 14:23:30 +01:00

19 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;