Skip to content

Commit

Permalink
add test for RcMut being Const and Owned, tests #7017 being fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bill-myers committed Jun 9, 2013
1 parent 90ec422 commit 54ec7ab
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/compile-fail/rcmut-not-const-and-not-owned.rs
@@ -0,0 +1,20 @@
// Copyright 2013 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.

extern mod extra;

fn o<T: Owned>(_: &T) {}
fn c<T: Const>(_: &T) {}

fn main() {
let x = extra::rc::rc_mut_from_owned(0);
o(&x); //~ ERROR instantiating a type parameter with an incompatible type `extra::rc::RcMut<int>`, which does not fulfill `Owned`
c(&x); //~ ERROR instantiating a type parameter with an incompatible type `extra::rc::RcMut<int>`, which does not fulfill `Const`
}

5 comments on commit 54ec7ab

@bors
Copy link
Contributor

@bors bors commented on 54ec7ab Jun 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from thestinger
at bill-myers@54ec7ab

@bors
Copy link
Contributor

@bors bors commented on 54ec7ab Jun 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging bill-myers/rust/fix_7017 = 54ec7ab into auto

@bors
Copy link
Contributor

@bors bors commented on 54ec7ab Jun 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bill-myers/rust/fix_7017 = 54ec7ab merged ok, testing candidate = 1f0c05f

@bors
Copy link
Contributor

@bors bors commented on 54ec7ab Jun 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 54ec7ab Jun 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding incoming to auto = 1f0c05f

Please sign in to comment.