diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2021-12-31 21:13:07 -0800 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2021-12-31 21:13:07 -0800 |
| commit | 0d55bd11009686dba662b0f4e697183691e7b308 (patch) | |
| tree | 991169b5cccdf9892b42bd178d6542da4f081c78 /src/test | |
| parent | 4d2e0fd96ccbb9ade41f1a3f07b14b7437f8e4ef (diff) | |
| download | rust-0d55bd11009686dba662b0f4e697183691e7b308.tar.gz rust-0d55bd11009686dba662b0f4e697183691e7b308.zip | |
Make tidy check for magic numbers that spell things
Remove existing problematic cases.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/link-section.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/link-section.rs b/src/test/ui/link-section.rs index 6958eeda697..48efb07ff48 100644 --- a/src/test/ui/link-section.rs +++ b/src/test/ui/link-section.rs @@ -31,7 +31,7 @@ static mut frobulator: usize = 0xdeadbeef; pub fn main() { unsafe { - frobulator = 0xcafebabe; + frobulator = 0x12345678; println!("{} {} {}", i_live_in_more_text(), magic, frobulator); } } |
