2014-12-22 19:57:14 -06:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
|
|
|
// Tests that are conservative around thin/fat pointer mismatches.
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
use std::mem::transmute;
|
|
|
|
|
2015-01-05 15:16:49 -06:00
|
|
|
struct Foo<T: ?Sized> {
|
2014-12-22 19:57:14 -06:00
|
|
|
t: Box<T>
|
|
|
|
}
|
|
|
|
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized> Foo<T> {
|
2015-01-08 04:54:35 -06:00
|
|
|
fn m(x: &T) -> &isize where T : Sized {
|
2014-12-22 19:57:14 -06:00
|
|
|
// OK here, because T : Sized is in scope.
|
|
|
|
unsafe { transmute(x) }
|
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn n(x: &T) -> &isize {
|
2014-12-22 19:57:14 -06:00
|
|
|
// Not OK here, because T : Sized is not in scope.
|
2015-10-13 03:25:31 -05:00
|
|
|
unsafe { transmute(x) } //~ ERROR transmute called with differently sized types
|
2014-12-22 19:57:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|