2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2011-11-09 09:44:42 +00:00
|
|
|
// Issue #570
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
static lsl : isize = 1 << 2;
|
|
|
|
static add : isize = 1 + 2;
|
2013-09-26 06:26:09 +00:00
|
|
|
static addf : f64 = 1.0 + 2.0;
|
2015-03-26 00:06:52 +00:00
|
|
|
static not : isize = !0;
|
2013-03-22 21:00:15 +00:00
|
|
|
static notb : bool = !true;
|
2015-03-26 00:06:52 +00:00
|
|
|
static neg : isize = -(1);
|
2011-11-09 09:44:42 +00:00
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(lsl, 4);
|
|
|
|
assert_eq!(add, 3);
|
2013-09-26 06:26:09 +00:00
|
|
|
assert_eq!(addf, 3.0);
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(not, -1);
|
|
|
|
assert_eq!(notb, false);
|
|
|
|
assert_eq!(neg, -1);
|
2011-11-09 09:44:42 +00:00
|
|
|
}
|