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