]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9129.rs
Convert unknown_features lint into an error
[rust.git] / src / test / run-pass / issue-9129.rs
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
11 // ignore-pretty unreported
12
13 #![feature(box_syntax)]
14
15 pub trait bomb { fn boom(&self, _: Ident); }
16 pub struct S;
17 impl bomb for S { fn boom(&self, _: Ident) { } }
18
19 pub struct Ident { name: usize }
20
21 // macro_rules! int3 { () => ( unsafe { asm!( "int3" ); } ) }
22 macro_rules! int3 { () => ( { } ) }
23
24 fn Ident_new() -> Ident {
25     int3!();
26     Ident {name: 0x6789ABCD }
27 }
28
29 pub fn light_fuse(fld: Box<bomb>) {
30     int3!();
31     let f = || {
32         int3!();
33         fld.boom(Ident_new()); // *** 1
34     };
35     f();
36 }
37
38 pub fn main() {
39     let b = box S as Box<bomb>;
40     light_fuse(b);
41 }