summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mut/mutable-class-fields.rs
blob: 30768a1ec9bcdf410d1ef44e7d78049e85242354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct Cat {
  meows : usize,
  how_hungry : isize,
}

fn cat(in_x : usize, in_y : isize) -> Cat {
    Cat {
        meows: in_x,
        how_hungry: in_y
    }
}

fn main() {
  let nyan : Cat = cat(52, 99);
  nyan.how_hungry = 0; //~ ERROR cannot assign
}