rust/tests/rustdoc/test_option_check/test.rs

19 lines
236 B
Rust
Raw Normal View History

//@ compile-flags: --test
//@ check-test-line-numbers-match
2017-02-06 22:28:31 +00:00
pub mod bar;
/// This is a Foo;
///
/// ```
/// println!("baaaaaar");
/// ```
pub struct Foo;
/// This is a Bar;
///
/// ```
/// println!("fooooo");
/// ```
pub struct Bar;