2021-01-09 20:45:19 -06:00
|
|
|
#![feature(prelude_import)]
|
|
|
|
#![no_std]
|
|
|
|
#[prelude_import]
|
2021-02-17 08:52:31 -06:00
|
|
|
use ::std::prelude::rust_2015::*;
|
2021-01-09 20:45:19 -06:00
|
|
|
#[macro_use]
|
|
|
|
extern crate std;
|
|
|
|
// Test for issue 80832
|
|
|
|
//
|
|
|
|
// pretty-mode:expanded
|
|
|
|
// pp-exact:expanded-and-path-remap-80832.pp
|
|
|
|
// compile-flags: --remap-path-prefix {{src-base}}=the/src
|
|
|
|
|
2021-12-01 13:45:14 -06:00
|
|
|
fn main() {}
|