summaryrefslogtreecommitdiffstats
path: root/tests/pretty/issue-12590-c.pp
blob: 07b3f5653d36b076eddccde7dd4afd0189fbcb91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use ::std::prelude::rust_2015::*;
#[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() {}