about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs
blob: 09df782a1367d6b4ea217955e955cebb38a95c80 (plain)
1
2
3
4
5
6
7
8
9
10
struct Foo;
impl Foo {
    fn bar() {
        foobar::ok();
    }
}

fn main() {
    Foo::bar();
}