Skip to content

Commit

Permalink
Update test for #5543
Browse files Browse the repository at this point in the history
Closes #5543.
  • Loading branch information
tamird committed Dec 28, 2014
1 parent 3725067 commit 5e9a2ab
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/test/compile-fail/issue-5543.rs
@@ -1,4 +1,4 @@
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
Expand All @@ -8,14 +8,12 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-test

use std::io::ReaderUtil;
use std::io::Reader;

fn bar(r:@ReaderUtil) -> String { r.read_line() }
trait Foo {}
impl Foo for u8 {}

fn main() {
let r : @Reader = io::stdin();
let _m = bar(r as @ReaderUtil);
let r: Box<Foo> = box 5;
let _m: Box<Foo> = r as Box<Foo>;
//~^ ERROR `core::kinds::Sized` is not implemented for the type `Foo`
//~| ERROR `Foo` is not implemented for the type `Foo`
}

0 comments on commit 5e9a2ab

Please sign in to comment.