rust/tests/rustdoc/test_option_check/test.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
236 B
Rust
Raw Normal View History

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