2017-11-05 12:27:46 -08:00
|
|
|
#![feature(prelude_import)]
|
|
|
|
#![no_std]
|
|
|
|
#[prelude_import]
|
2018-08-10 16:01:32 +03:00
|
|
|
use ::std::prelude::v1::*;
|
2017-11-05 12:27:46 -08:00
|
|
|
#[macro_use]
|
2018-07-12 01:16:27 +02:00
|
|
|
extern crate std;
|
2017-11-05 12:27:46 -08:00
|
|
|
// pretty-compare-only
|
|
|
|
// pretty-mode:expanded
|
|
|
|
// pp-exact:cast-lt.pp
|
|
|
|
|
2019-07-14 00:11:59 +03:00
|
|
|
macro_rules! negative { ($ e : expr) => { $ e < 0 } }
|
2017-11-05 12:27:46 -08:00
|
|
|
|
|
|
|
fn main() { (1 as i32) < 0; }
|