rustc/tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs
2024-07-31 08:40:13 +02:00

11 lines
99 B
Rust

struct Foo;
impl Foo {
fn bar() {
foobar::ok();
}
}
fn main() {
Foo::bar();
}