2014-04-02 19:38:45 -05:00
|
|
|
// 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 <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.
|
2014-07-21 17:57:14 -05:00
|
|
|
//
|
|
|
|
// ignore-lexer-test FIXME #15879
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-04-02 19:38:45 -05:00
|
|
|
// Test sized-ness checking in substitution.
|
|
|
|
|
|
|
|
// Unbounded.
|
2014-12-24 01:05:30 -06:00
|
|
|
fn f1<X: ?Sized>(x: &X) {
|
2014-04-02 19:38:45 -05:00
|
|
|
f1::<X>(x);
|
|
|
|
}
|
|
|
|
fn f2<X>(x: &X) {
|
|
|
|
f1::<X>(x);
|
|
|
|
f2::<X>(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bounded.
|
2015-01-05 21:13:38 -06:00
|
|
|
trait T {}
|
2014-12-24 01:05:30 -06:00
|
|
|
fn f3<X: T+?Sized>(x: &X) {
|
2014-04-02 19:38:45 -05:00
|
|
|
f3::<X>(x);
|
|
|
|
}
|
|
|
|
fn f4<X: T>(x: &X) {
|
|
|
|
f3::<X>(x);
|
|
|
|
f4::<X>(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Self type.
|
2015-01-05 21:13:38 -06:00
|
|
|
trait T2 {
|
2014-05-05 20:56:44 -05:00
|
|
|
fn f() -> Box<Self>;
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
struct S;
|
|
|
|
impl T2 for S {
|
2014-05-05 20:56:44 -05:00
|
|
|
fn f() -> Box<S> {
|
|
|
|
box S
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
fn f5<X: ?Sized+T2>(x: &X) {
|
2014-05-05 20:56:44 -05:00
|
|
|
let _: Box<X> = T2::f();
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
fn f6<X: T2>(x: &X) {
|
2014-05-05 20:56:44 -05:00
|
|
|
let _: Box<X> = T2::f();
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
|
2015-01-05 21:13:38 -06:00
|
|
|
trait T3 {
|
2014-05-05 20:56:44 -05:00
|
|
|
fn f() -> Box<Self>;
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
impl T3 for S {
|
2014-05-05 20:56:44 -05:00
|
|
|
fn f() -> Box<S> {
|
|
|
|
box S
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
fn f7<X: ?Sized+T3>(x: &X) {
|
2014-04-02 19:38:45 -05:00
|
|
|
// This is valid, but the unsized bound on X is irrelevant because any type
|
|
|
|
// which implements T3 must have statically known size.
|
2014-05-05 20:56:44 -05:00
|
|
|
let _: Box<X> = T3::f();
|
2014-04-02 19:38:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait T4<X> {
|
|
|
|
fn m1(x: &T4<X>);
|
|
|
|
fn m2(x: &T5<X>);
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
trait T5<X: ?Sized> {
|
2014-04-20 01:53:37 -05:00
|
|
|
// not an error (for now)
|
|
|
|
fn m1(x: &T4<X>);
|
2014-04-02 19:38:45 -05:00
|
|
|
fn m2(x: &T5<X>);
|
|
|
|
}
|
|
|
|
|
|
|
|
trait T6<X: T> {
|
|
|
|
fn m1(x: &T4<X>);
|
|
|
|
fn m2(x: &T5<X>);
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
trait T7<X: ?Sized+T> {
|
2014-04-20 01:53:37 -05:00
|
|
|
// not an error (for now)
|
|
|
|
fn m1(x: &T4<X>);
|
2014-04-02 19:38:45 -05:00
|
|
|
fn m2(x: &T5<X>);
|
|
|
|
}
|
|
|
|
|
2014-04-08 04:00:20 -05:00
|
|
|
// The last field in a struct or variant may be unsized
|
2014-12-24 01:05:30 -06:00
|
|
|
struct S2<X: ?Sized> {
|
2014-04-08 04:00:20 -05:00
|
|
|
f: X,
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
struct S3<X: ?Sized> {
|
2014-04-08 04:00:20 -05:00
|
|
|
f1: int,
|
|
|
|
f2: X,
|
|
|
|
}
|
2014-12-24 01:05:30 -06:00
|
|
|
enum E<X: ?Sized> {
|
2014-04-08 04:00:20 -05:00
|
|
|
V1(X),
|
|
|
|
V2{x: X},
|
|
|
|
V3(int, X),
|
|
|
|
V4{u: int, x: X},
|
|
|
|
}
|
|
|
|
|
2014-04-02 19:38:45 -05:00
|
|
|
pub fn main() {
|
|
|
|
}
|