2014-05-04 03:39:11 -05:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-05-04 03:39:11 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_unsafe)]
|
|
|
|
|
2015-01-06 16:33:42 -06:00
|
|
|
use std::marker::Sync;
|
2014-12-06 10:39:25 -06:00
|
|
|
|
2014-05-04 03:39:11 -05:00
|
|
|
struct Foo {
|
2015-01-20 17:43:38 -06:00
|
|
|
a: usize,
|
2014-06-25 14:47:34 -05:00
|
|
|
b: *const ()
|
2014-05-04 03:39:11 -05:00
|
|
|
}
|
|
|
|
|
2014-12-21 17:49:42 -06:00
|
|
|
unsafe impl Sync for Foo {}
|
2014-12-06 10:39:25 -06:00
|
|
|
|
2014-05-04 03:39:11 -05:00
|
|
|
fn foo<T>(a: T) -> T {
|
|
|
|
a
|
|
|
|
}
|
|
|
|
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_INTEGRAL: usize = { 1 };
|
2014-05-04 03:39:11 -05:00
|
|
|
static BLOCK_EXPLICIT_UNIT: () = { () };
|
|
|
|
static BLOCK_IMPLICIT_UNIT: () = { };
|
|
|
|
static BLOCK_FLOAT: f64 = { 1.0 };
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_ENUM: Option<usize> = { Some(100) };
|
2014-06-25 14:47:34 -05:00
|
|
|
static BLOCK_STRUCT: Foo = { Foo { a: 12, b: 0 as *const () } };
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_UNSAFE: usize = unsafe { 1000 };
|
2014-05-04 03:39:11 -05:00
|
|
|
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_FN_INFERRED: fn(usize) -> usize = { foo };
|
2014-05-04 03:39:11 -05:00
|
|
|
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_FN: fn(usize) -> usize = { foo::<usize> };
|
2014-05-04 03:39:11 -05:00
|
|
|
|
2015-01-20 17:43:38 -06:00
|
|
|
static BLOCK_ENUM_CONSTRUCTOR: fn(usize) -> Option<usize> = { Some };
|
2014-05-04 03:39:11 -05:00
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
assert_eq!(BLOCK_INTEGRAL, 1);
|
|
|
|
assert_eq!(BLOCK_EXPLICIT_UNIT, ());
|
|
|
|
assert_eq!(BLOCK_IMPLICIT_UNIT, ());
|
|
|
|
assert_eq!(BLOCK_FLOAT, 1.0_f64);
|
|
|
|
assert_eq!(BLOCK_STRUCT.a, 12);
|
2014-06-25 14:47:34 -05:00
|
|
|
assert_eq!(BLOCK_STRUCT.b, 0 as *const ());
|
2014-05-04 03:39:11 -05:00
|
|
|
assert_eq!(BLOCK_ENUM, Some(100));
|
|
|
|
assert_eq!(BLOCK_UNSAFE, 1000);
|
2015-01-20 17:43:38 -06:00
|
|
|
assert_eq!(BLOCK_FN_INFERRED(300), 300);
|
|
|
|
assert_eq!(BLOCK_FN(300), 300);
|
|
|
|
assert_eq!(BLOCK_ENUM_CONSTRUCTOR(200), Some(200));
|
2014-05-04 03:39:11 -05:00
|
|
|
}
|