rust/src/test/compile-fail/tps-invariant-trait.rs
2012-12-10 17:32:58 -08:00

39 lines
1.0 KiB
Rust

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
trait box_trait<T> {
fn get() -> T;
fn set(t: T);
}
enum box_impl<T> = {
mut f: T
};
impl<T:Copy> box_impl<T>: box_trait<T> {
fn get() -> T { return self.f; }
fn set(t: T) { self.f = t; }
}
fn set_box_trait<T>(b: box_trait<@const T>, v: @const T) {
b.set(v);
}
fn set_box_impl<T>(b: box_impl<@const T>, v: @const T) {
b.set(v);
}
fn main() {
let b = box_impl::<@int>({mut f: @3});
set_box_trait(b as box_trait::<@int>, @mut 5);
//~^ ERROR values differ in mutability
set_box_impl(b, @mut 5);
//~^ ERROR values differ in mutability
}