rust/src/test/compile-fail/tps-invariant-iface.rs
Gareth Daniel Smith 6d86969260 change the test suite //! kind syntax to //~ kind in order to avoid a
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
2012-06-30 12:23:59 +01:00

29 lines
588 B
Rust

iface box_iface<T> {
fn get() -> T;
fn set(t: T);
}
enum box_impl<T> = {
mut f: T
};
impl<T:copy> of box_iface<T> for box_impl<T> {
fn get() -> T { ret self.f; }
fn set(t: T) { self.f = t; }
}
fn set_box_iface<T>(b: box_iface<@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_iface(b as box_iface::<@int>, @mut 5);
//~^ ERROR values differ in mutability
set_box_impl(b, @mut 5);
//~^ ERROR values differ in mutability
}