mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
19 lines
234 B
Rust
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;
|