]> git.lizzy.rs Git - rust.git/blob - src/test/debug-info/closure-in-generic-function.rs
Ignore tests broken by failing on ICE
[rust.git] / src / test / debug-info / closure-in-generic-function.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-android: FIXME(#10381)
12
13 // compile-flags:-g
14 // debugger:rbreak zzz
15 // debugger:run
16
17 // debugger:finish
18 // debugger:print x
19 // check:$1 = 0.5
20 // debugger:print y
21 // check:$2 = 10
22 // debugger:continue
23
24 // debugger:finish
25 // debugger:print *x
26 // check:$3 = 29
27 // debugger:print *y
28 // check:$4 = 110
29 // debugger:continue
30
31 fn some_generic_fun<T1, T2>(a: T1, b: T2) -> (T2, T1) {
32
33     let closure = |x, y| {
34         zzz();
35         (y, x)
36     };
37
38     closure(a, b)
39 }
40
41 fn main() {
42     some_generic_fun(0.5, 10);
43     some_generic_fun(&29, ~110);
44 }
45
46 fn zzz() {()}