|
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 | +// Check extern items cannot be const + `rustfix` suggests using |
| 2 | +// extern static. |
4 | 3 | //
|
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. |
| 4 | +// #54388: an unused reference to an undefined static may or may not |
| 5 | +// compile. To sidestep this by using one that *is* defined. |
10 | 6 |
|
11 |
| -// FIXME(#54388): re-enable rustfix later, when this test has consistent output across targets |
12 |
| -// compile-flags: -Z continue-parse-after-error |
| 7 | +// run-rustfix |
| 8 | +// ignore-wasm32 no external library to link to. |
| 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