]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/issue-9129.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / run-pass / issue-9129.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
c30ab7b3 11// ignore-pretty unreported
1a4d82fc
JJ
12
13#![allow(unknown_features)]
14#![feature(box_syntax)]
15
16pub trait bomb { fn boom(&self, Ident); }
17pub struct S;
18impl bomb for S { fn boom(&self, _: Ident) { } }
19
c34b1796 20pub struct Ident { name: usize }
1a4d82fc
JJ
21
22// macro_rules! int3 { () => ( unsafe { asm!( "int3" ); } ) }
23macro_rules! int3 { () => ( { } ) }
24
25fn Ident_new() -> Ident {
26 int3!();
27 Ident {name: 0x6789ABCD }
28}
29
30pub fn light_fuse(fld: Box<bomb>) {
31 int3!();
85aaf69f 32 let f = || {
1a4d82fc
JJ
33 int3!();
34 fld.boom(Ident_new()); // *** 1
35 };
36 f();
37}
38
39pub fn main() {
40 let b = box S as Box<bomb>;
41 light_fuse(b);
42}