forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#55719 - pnkfelix:issue-54388-sidestep-link-…
…error-from-rustfixed-code, r=alexcrichton Sidestep link error from rustfix'ed code by using a *defined* static. As a drive-by, added `-g` to the compile-flags so that the test more reliably fails to compile when the extern static in question is *not* provided. (I.e. this is making the test more robust in the face of potential future revisions.) Fix rust-lang#54388.
- Loading branch information
Showing
3 changed files
with
38 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Check extern items cannot be const + `rustfix` suggests using | ||
// extern static. | ||
// | ||
// #54388: an unused reference to an undefined static may or may not | ||
// compile. To sidestep this by using one that *is* defined. | ||
|
||
// run-rustfix | ||
// ignore-wasm32 no external library to link to. | ||
// compile-flags: -g -Z continue-parse-after-error | ||
#![feature(libc)] | ||
extern crate libc; | ||
|
||
#[link(name = "rust_test_helpers", kind = "static")] | ||
extern "C" { | ||
static rust_dbg_static_mut: libc::c_int; //~ ERROR extern items cannot be `const` | ||
} | ||
|
||
fn main() { | ||
// We suggest turning the (illegal) extern `const` into an extern `static`, | ||
// but this also requires `unsafe` (a deny-by-default lint at comment time, | ||
// future error; Issue #36247) | ||
unsafe { | ||
let _x = rust_dbg_static_mut; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// Check extern items cannot be const + `rustfix` suggests using | ||
// extern static. | ||
// | ||
// 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. | ||
// #54388: an unused reference to an undefined static may or may not | ||
// compile. To sidestep this by using one that *is* defined. | ||
|
||
// FIXME(#54388): re-enable rustfix later, when this test has consistent output across targets | ||
// compile-flags: -Z continue-parse-after-error | ||
// run-rustfix | ||
// ignore-wasm32 no external library to link to. | ||
// compile-flags: -g -Z continue-parse-after-error | ||
#![feature(libc)] | ||
extern crate libc; | ||
|
||
#[link(name = "rust_test_helpers", kind = "static")] | ||
extern "C" { | ||
const C: u8; //~ ERROR extern items cannot be `const` | ||
const rust_dbg_static_mut: libc::c_int; //~ ERROR extern items cannot be `const` | ||
} | ||
|
||
fn main() { | ||
// We suggest turning the (illegal) extern `const` into an extern `static`, | ||
// but this also requires `unsafe` (a deny-by-default lint at comment time, | ||
// future error; Issue #36247) | ||
unsafe { | ||
let _x = C; | ||
let _x = rust_dbg_static_mut; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters