|
1 | | -// Copyright 2017 The Rust Project Developers. See the COPYRIGHT |
2 | | -// file at the top-level directory of this distribution and at |
3 | | -// http://rust-lang.org/COPYRIGHT. |
| 1 | +// This test is checking that extern items cannot be const. It also |
| 2 | +// checks that `rustfix` suggests the alternative of using an extern |
| 3 | +// static. |
4 | 4 | // |
5 | | -// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
6 | | -// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
7 | | -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
8 | | -// option. This file may not be copied, modified, or distributed |
9 | | -// except according to those terms. |
| 5 | +// #54388: an unused reference to an undefined static may or may not |
| 6 | +// compile. To sidestep this by using one that *is* defined. |
10 | 7 |
|
11 | | -// FIXME(#54388): re-enable rustfix later, when this test has consistent output across targets |
12 | | -// compile-flags: -Z continue-parse-after-error |
| 8 | +// run-rustfix |
| 9 | +// compile-flags: -g -Z continue-parse-after-error |
| 10 | +#![feature(libc)] |
| 11 | +extern crate libc; |
13 | 12 |
|
| 13 | +#[link(name = "rust_test_helpers", kind = "static")] |
14 | 14 | extern "C" { |
15 | | - const C: u8; //~ ERROR extern items cannot be `const` |
| 15 | + const rust_dbg_static_mut: libc::c_int; //~ ERROR extern items cannot be `const` |
16 | 16 | } |
17 | 17 |
|
18 | 18 | fn main() { |
19 | 19 | // We suggest turning the (illegal) extern `const` into an extern `static`, |
20 | 20 | // but this also requires `unsafe` (a deny-by-default lint at comment time, |
21 | 21 | // future error; Issue #36247) |
22 | 22 | unsafe { |
23 | | - let _x = C; |
| 23 | + let _x = rust_dbg_static_mut; |
24 | 24 | } |
25 | 25 | } |
0 commit comments