2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-09-16 17:39:18 -05:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
|
|
mod bar {
|
|
|
|
|
use Foo;
|
|
|
|
|
|
2015-02-20 11:36:31 +02:00
|
|
|
impl Foo {
|
2014-09-16 17:39:18 -05:00
|
|
|
fn baz(&self) {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn main() {}
|