2018-07-17 15:00:51 +00:00
|
|
|
#![feature(prelude_import)]
|
|
|
|
#![no_std]
|
|
|
|
#[prelude_import]
|
2021-02-17 14:52:31 +00:00
|
|
|
use ::std::prelude::rust_2015::*;
|
2018-07-17 15:00:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate std;
|
2024-02-21 12:37:58 +00:00
|
|
|
//@ pretty-compare-only
|
|
|
|
//@ pretty-mode:expanded
|
|
|
|
//@ pp-exact:issue-12590-c.pp
|
2018-07-12 21:35:40 +00:00
|
|
|
|
|
|
|
// The next line should be expanded
|
|
|
|
|
2019-03-12 00:49:17 +00:00
|
|
|
#[path = "issue-12590-b.rs"]
|
2018-07-12 21:35:40 +00:00
|
|
|
mod issue_12590_b {
|
|
|
|
|
2021-12-01 19:45:14 +00:00
|
|
|
fn b() {}
|
|
|
|
fn main() {}
|
2018-07-12 21:35:40 +00:00
|
|
|
}
|
2021-12-01 19:45:14 +00:00
|
|
|
fn main() {}
|