2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2011-06-30 16:03:07 -07:00
|
|
|
// Test view items inside non-file-level mods
|
|
|
|
|
|
|
|
// This is a regression test for an issue where we were failing to
|
|
|
|
// pretty-print such view items. If that happens again, this should
|
|
|
|
// begin failing.
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
2011-06-30 16:03:07 -07:00
|
|
|
mod m {
|
2015-03-25 17:06:52 -07:00
|
|
|
pub fn f() -> Vec<isize> { Vec::new() }
|
2011-06-30 16:03:07 -07:00
|
|
|
}
|
|
|
|
|
2013-08-17 08:37:42 -07:00
|
|
|
pub fn main() { let _x = m::f(); }
|