summary refs log tree commit diff
path: root/src/test/compile-fail/non-const.rs
blob: 885ac1a8f945e4c447b6f26f3f45dd543ce751a3 (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
// Test that various non const things are rejected.

fn foo<T: const>(_x: T) { }

class r {
  let x:int;
  new(x:int) { self.x = x; }
  drop {}
}

class r2 {
  let x:@mut int;
  new(x:@mut int) { self.x = x; }
  drop {}
}

fn main() {
    foo({f: 3});
    foo({mut f: 3}); //~ ERROR missing `const`
    foo(~[1]);
    foo(~[mut 1]); //~ ERROR missing `const`
    foo(~1);
    foo(~mut 1); //~ ERROR missing `const`
    foo(@1);
    foo(@mut 1); //~ ERROR missing `const`
    foo(r(1)); // this is okay now.
    foo(r2(@mut 1)); //~ ERROR missing `const`
    foo("123");
    foo({f: {mut f: 1}}); //~ ERROR missing `const`
}