// 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. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Test sized-ness checking in substitution within fn bodies.. // Unbounded. fn f1(x: &X) { f2::(x); //~^ ERROR the trait `core::marker::Sized` is not implemented } fn f2(x: &X) { } // Bounded. trait T {} fn f3(x: &X) { f4::(x); //~^ ERROR the trait `core::marker::Sized` is not implemented } fn f4(x: &X) { } // Test with unsized enum. enum E { V(X), } fn f5(x: &Y) {} fn f6(x: &X) {} fn f7(x1: &E, x2: &E) { f5(x1); //~^ ERROR the trait `core::marker::Sized` is not implemented f6(x2); // ok } // Test with unsized struct. struct S { x: X, } fn f8(x1: &S, x2: &S) { f5(x1); //~^ ERROR the trait `core::marker::Sized` is not implemented f6(x2); // ok } // Test some tuples. fn f9(x1: Box>, x2: Box>) { f5(&(*x1, 34)); //~^ ERROR the trait `core::marker::Sized` is not implemented } fn f10(x1: Box>, x2: Box>) { f5(&(32, *x2)); //~^ ERROR the trait `core::marker::Sized` is not implemented } pub fn main() { }