2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ pretty-expanded FIXME #23616
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-01-29 00:05:11 -05:00
|
|
|
pub mod foo {
|
|
|
|
use super::Bar;
|
|
|
|
|
|
|
|
pub struct FooStruct { bar : Bar }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Bar {
|
2015-03-25 17:06:52 -07:00
|
|
|
Bar0 = 0 as isize
|
2014-01-29 00:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|