mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Add even more tests
Closes #8248 Closes #8249 Closes #8398 Closes #8401
This commit is contained in:
parent
443bf93e48
commit
1764e207fb
25
src/test/auxiliary/issue_8401.rs
Normal file
25
src/test/auxiliary/issue_8401.rs
Normal file
@ -0,0 +1,25 @@
|
||||
// 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.
|
||||
|
||||
// for this issue, this code must be built in a library
|
||||
|
||||
use std::cast;
|
||||
|
||||
trait A {}
|
||||
struct B;
|
||||
impl A for B {}
|
||||
|
||||
fn bar<T>(_: &mut A, _: &T) {}
|
||||
|
||||
fn foo<T>(t: &T) {
|
||||
let b = B;
|
||||
bar(unsafe { cast::transmute(&b as &A) }, t)
|
||||
}
|
||||
|
21
src/test/run-pass/issue-8248.rs
Normal file
21
src/test/run-pass/issue-8248.rs
Normal file
@ -0,0 +1,21 @@
|
||||
// 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.
|
||||
|
||||
trait A {}
|
||||
struct B;
|
||||
impl A for B {}
|
||||
|
||||
fn foo(_: &mut A) {}
|
||||
|
||||
fn main() {
|
||||
let mut b = B;
|
||||
foo(&mut b as &mut A);
|
||||
}
|
||||
|
25
src/test/run-pass/issue-8249.rs
Normal file
25
src/test/run-pass/issue-8249.rs
Normal file
@ -0,0 +1,25 @@
|
||||
// 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.
|
||||
|
||||
trait A {}
|
||||
struct B;
|
||||
impl A for B {}
|
||||
|
||||
struct C<'self> {
|
||||
foo: &'self mut A,
|
||||
}
|
||||
|
||||
fn foo(a: &mut A) {
|
||||
C{ foo: a };
|
||||
}
|
||||
|
||||
fn main() {
|
||||
}
|
||||
|
18
src/test/run-pass/issue-8398.rs
Normal file
18
src/test/run-pass/issue-8398.rs
Normal file
@ -0,0 +1,18 @@
|
||||
// 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.
|
||||
|
||||
use std::rt::io;
|
||||
|
||||
fn foo(a: &mut io::Writer) {
|
||||
a.write([])
|
||||
}
|
||||
|
||||
fn main(){}
|
||||
|
16
src/test/run-pass/issue-8401.rs
Normal file
16
src/test/run-pass/issue-8401.rs
Normal file
@ -0,0 +1,16 @@
|
||||
// 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.
|
||||
|
||||
// aux-build:issue_8401.rs
|
||||
// xfail-fast
|
||||
|
||||
extern mod issue_8401;
|
||||
|
||||
pub fn main() {}
|
Loading…
Reference in New Issue
Block a user