blob: 091467283c50af8e55774906d809307920ad84b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
fn match_ref(&&v: option<int>) -> int {
alt v {
some(i) {
i
}
none {0}
}
}
fn match_ref_unused(&&v: option<int>) {
alt v {
some(_) {}
none {}
}
}
fn match_const_reg(v: &const option<int>) -> int {
alt *v {
some(i) {i} // OK because this is pure
none {0}
}
}
fn impure(_i: int) {
}
fn match_const_reg_unused(v: &const option<int>) {
alt *v {
some(_) {impure(0)} // OK because nothing is captured
none {}
}
}
fn match_const_reg_impure(v: &const option<int>) {
alt *v {
some(i) {impure(i)} //~ ERROR illegal borrow unless pure: enum variant in aliasable, mutable location
//~^ NOTE impure due to access to impure function
none {}
}
}
fn match_imm_reg(v: &option<int>) {
alt *v {
some(i) {impure(i)} // OK because immutable
none {}
}
}
fn main() {
}
|