2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-12-17 01:04:02 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-10-12 17:54:41 +00:00
|
|
|
// ignore-pretty unreported
|
2013-12-17 01:04:02 +00:00
|
|
|
|
2015-01-08 01:25:56 +00:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2014-02-06 22:38:33 +00:00
|
|
|
pub trait bomb { fn boom(&self, Ident); }
|
2013-12-17 01:04:02 +00:00
|
|
|
pub struct S;
|
2014-02-06 22:38:33 +00:00
|
|
|
impl bomb for S { fn boom(&self, _: Ident) { } }
|
2013-12-17 01:04:02 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
pub struct Ident { name: usize }
|
2013-12-17 01:04:02 +00:00
|
|
|
|
2015-01-02 22:44:21 +00:00
|
|
|
// macro_rules! int3 { () => ( unsafe { asm!( "int3" ); } ) }
|
|
|
|
macro_rules! int3 { () => ( { } ) }
|
2013-12-17 01:04:02 +00:00
|
|
|
|
|
|
|
fn Ident_new() -> Ident {
|
|
|
|
int3!();
|
|
|
|
Ident {name: 0x6789ABCD }
|
|
|
|
}
|
|
|
|
|
2014-05-06 01:56:44 +00:00
|
|
|
pub fn light_fuse(fld: Box<bomb>) {
|
2013-12-17 01:04:02 +00:00
|
|
|
int3!();
|
2015-02-01 17:44:15 +00:00
|
|
|
let f = || {
|
2013-12-17 01:04:02 +00:00
|
|
|
int3!();
|
|
|
|
fld.boom(Ident_new()); // *** 1
|
|
|
|
};
|
|
|
|
f();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-05-06 01:56:44 +00:00
|
|
|
let b = box S as Box<bomb>;
|
2013-12-17 01:04:02 +00:00
|
|
|
light_fuse(b);
|
|
|
|
}
|