Update comments in cast-lt.pp

This commit is contained in:
Alec Theriault 2017-11-06 22:18:14 -08:00
parent 3761c0d246
commit aa38a1ee50

View File

@ -4,7 +4,7 @@
use std::prelude::v1::*;
#[macro_use]
extern crate std as std;
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
@ -18,8 +18,6 @@ extern crate std as std;
// pretty-mode:expanded
// pp-exact:cast-lt.pp
// #4264 fixed-length vector types
macro_rules! negative(( $ e : expr ) => { $ e < 0 });
fn main() { (1 as i32) < 0; }