2014-12-22 21:20:31 -08: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.
|
|
|
|
|
|
2017-07-26 21:51:09 -07:00
|
|
|
#![allow(safe_extern_statics, warnings)]
|
|
|
|
|
|
2014-12-22 21:20:31 -08:00
|
|
|
extern {
|
|
|
|
|
pub static symbol: ();
|
|
|
|
|
}
|
2018-05-29 01:38:18 +01:00
|
|
|
static CRASH: () = symbol;
|
2018-07-01 02:26:31 +01:00
|
|
|
//~^ ERROR could not evaluate static initializer
|
|
|
|
|
//~| tried to read from foreign (extern) static
|
2014-12-22 21:20:31 -08:00
|
|
|
|
|
|
|
|
fn main() {}
|