rust/src/test/run-pass/mod-view-items.rs
2011-07-27 15:54:33 +02:00

13 lines
320 B
Rust

// 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.
mod m {
use std;
import std::vec;
fn f() -> vec[int] { vec::empty[int]() }
}
fn main() { let x = m::f(); }