2018-06-26 18:01:56 -05:00
|
|
|
// rustfmt-file_lines: [{"file":"tests/source/file-lines-item.rs","range":[6,8]}]
|
2017-07-28 22:51:45 -05:00
|
|
|
|
|
|
|
use foo::{c, b, a};
|
2017-07-29 10:07:17 -05:00
|
|
|
use bar;
|
2017-07-28 22:51:45 -05:00
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
bar();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Context {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
}
|
|
|
|
}
|
2017-07-29 10:06:50 -05:00
|
|
|
|
|
|
|
impl Bar for Baz {
|
|
|
|
fn foo() {
|
|
|
|
bar(
|
|
|
|
baz, // Who knows?
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|