// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Verify that it is not possible to take the address of // static items with unsafe interior. use std::kinds::marker; use std::cell::UnsafeCell; struct MyUnsafe { value: UnsafeCell } impl MyUnsafe { fn forbidden(&self) {} } enum UnsafeEnum { VariantSafe, VariantUnsafe(UnsafeCell) } static STATIC1: UnsafeEnum = VariantSafe; static STATIC2: UnsafeCell = UnsafeCell { value: 1 }; static STATIC3: MyUnsafe = MyUnsafe{value: STATIC2}; static STATIC4: &'static UnsafeCell = &STATIC2; //~^ ERROR borrow of immutable static items with unsafe interior is not allowed struct Wrap { value: T } static UNSAFE: UnsafeCell = UnsafeCell{value: 1}; static WRAPPED_UNSAFE: Wrap<&'static UnsafeCell> = Wrap { value: &UNSAFE }; //~^ ERROR borrow of immutable static items with unsafe interior is not allowed fn main() { let a = &STATIC1; //~^ ERROR borrow of immutable static items with unsafe interior is not allowed STATIC3.forbidden() //~^ ERROR borrow of immutable static items with unsafe interior is not allowed }