rust/src/test/pretty/issue-12590-c.pp

20 lines
328 B
ObjectPascal
Raw Normal View History

#![feature(prelude_import)]
#![no_std]
#[prelude_import]
2018-09-10 15:44:42 +02:00
use ::std::prelude::v1::*;
#[macro_use]
extern crate std;
// pretty-compare-only
// pretty-mode:expanded
// pp-exact:issue-12590-c.pp
// The next line should be expanded
#[path = "issue-12590-b.rs"]
mod issue_12590_b {
fn b() { }
fn main() { }
}
fn main() { }