2012-04-11 23:45:18 -05:00
|
|
|
fn two_args<T>(x: T, y: T) { }
|
|
|
|
|
|
|
|
fn main() {
|
2012-06-29 18:26:56 -05:00
|
|
|
let x: ~[mut int] = ~[mut 3];
|
|
|
|
let y: ~[int] = ~[3];
|
2012-04-11 23:45:18 -05:00
|
|
|
let a: @mut int = @mut 3;
|
|
|
|
let b: @int = @3;
|
|
|
|
|
|
|
|
// NOTE:
|
|
|
|
//
|
|
|
|
// The fact that this test fails to compile reflects a known
|
|
|
|
// shortcoming of the current inference algorithm. These errors
|
|
|
|
// are *not* desirable.
|
|
|
|
|
2012-06-30 06:23:59 -05:00
|
|
|
two_args(x, y); //~ ERROR (values differ in mutability)
|
|
|
|
two_args(a, b); //~ ERROR (values differ in mutability)
|
2012-04-11 23:45:18 -05:00
|
|
|
}
|