2018-06-04 11:32:06 -05:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2018-08-10 16:46:59 -05:00
|
|
|
// normalize-stderr-test "alignment \d+" -> "alignment N"
|
|
|
|
// normalize-stderr-test "offset \d+" -> "offset N"
|
|
|
|
// normalize-stderr-test "allocation \d+" -> "allocation N"
|
|
|
|
// normalize-stderr-test "size \d+" -> "size N"
|
|
|
|
|
2018-08-17 05:39:36 -05:00
|
|
|
union BoolTransmute {
|
|
|
|
val: u8,
|
|
|
|
bl: bool,
|
|
|
|
}
|
|
|
|
|
2018-06-04 11:32:06 -05:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct SliceRepr {
|
|
|
|
ptr: *const u8,
|
|
|
|
len: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct BadSliceRepr {
|
|
|
|
ptr: *const u8,
|
|
|
|
len: &'static u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
union SliceTransmute {
|
|
|
|
repr: SliceRepr,
|
|
|
|
bad: BadSliceRepr,
|
|
|
|
slice: &'static [u8],
|
|
|
|
str: &'static str,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct DynRepr {
|
|
|
|
ptr: *const u8,
|
|
|
|
vtable: *const u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct DynRepr2 {
|
|
|
|
ptr: *const u8,
|
|
|
|
vtable: *const u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct BadDynRepr {
|
|
|
|
ptr: *const u8,
|
|
|
|
vtable: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
union DynTransmute {
|
|
|
|
repr: DynRepr,
|
|
|
|
repr2: DynRepr2,
|
|
|
|
bad: BadDynRepr,
|
|
|
|
rust: &'static Trait,
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Trait {}
|
2018-08-17 05:39:36 -05:00
|
|
|
impl Trait for bool {}
|
2018-06-04 11:32:06 -05:00
|
|
|
|
|
|
|
// OK
|
|
|
|
const A: &str = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 1 } }.str};
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad str
|
2018-06-04 11:32:06 -05:00
|
|
|
const B: &str = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 999 } }.str};
|
2018-08-15 17:18:09 -05:00
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad str
|
2018-06-04 11:32:06 -05:00
|
|
|
const C: &str = unsafe { SliceTransmute { bad: BadSliceRepr { ptr: &42, len: &3 } }.str};
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
|
|
|
|
|
|
|
// OK
|
|
|
|
const A2: &[u8] = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 1 } }.slice};
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad slice
|
2018-06-04 11:32:06 -05:00
|
|
|
const B2: &[u8] = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 999 } }.slice};
|
2018-08-15 17:18:09 -05:00
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad slice
|
2018-06-04 11:32:06 -05:00
|
|
|
const C2: &[u8] = unsafe { SliceTransmute { bad: BadSliceRepr { ptr: &42, len: &3 } }.slice};
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
|
|
|
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad trait object
|
2018-06-04 11:32:06 -05:00
|
|
|
const D: &Trait = unsafe { DynTransmute { repr: DynRepr { ptr: &92, vtable: &3 } }.rust};
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad trait object
|
2018-06-04 11:32:06 -05:00
|
|
|
const E: &Trait = unsafe { DynTransmute { repr2: DynRepr2 { ptr: &92, vtable: &3 } }.rust};
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad trait object
|
2018-06-04 11:32:06 -05:00
|
|
|
const F: &Trait = unsafe { DynTransmute { bad: BadDynRepr { ptr: &92, vtable: 3 } }.rust};
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
|
|
|
|
2018-08-17 05:39:36 -05:00
|
|
|
// bad data *inside* the trait object
|
|
|
|
const G: &Trait = &unsafe { BoolTransmute { val: 3 }.bl };
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
|
|
|
|
|
|
|
// bad data *inside* the slice
|
|
|
|
const H: &[bool] = &[unsafe { BoolTransmute { val: 3 }.bl }];
|
|
|
|
//~^ ERROR this constant likely exhibits undefined behavior
|
|
|
|
|
2018-06-04 11:32:06 -05:00
|
|
|
fn main() {
|
|
|
|
}
|