2017-01-23 15:46:18 -06:00
|
|
|
//@ compile-flags: --test
|
|
|
|
//@ check-test-line-numbers-match
|
2017-01-20 16:24:20 -06:00
|
|
|
|
2017-02-06 16:28:31 -06:00
|
|
|
pub mod bar;
|
|
|
|
|
2017-01-20 16:24:20 -06:00
|
|
|
/// This is a Foo;
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// println!("baaaaaar");
|
|
|
|
/// ```
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
/// This is a Bar;
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// println!("fooooo");
|
|
|
|
/// ```
|
|
|
|
pub struct Bar;
|