summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs
blob: 44ff689dfc876e4e2f2f0aa08d9c4568f2c5b042 (plain)
1
2
3
4
5
6
7
8
struct Foo;
impl Foo {
  fn bar() { foobar::ok(); }
}

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