2014-04-08 09:00:20 +00: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.
|
|
|
|
|
2015-01-06 01:03:46 +00:00
|
|
|
// Test `?Sized` types not allowed in fields (except the last one).
|
2014-04-08 09:00:20 +00:00
|
|
|
|
2015-01-05 21:16:49 +00:00
|
|
|
struct S1<X: ?Sized> {
|
2015-01-06 22:33:42 +00:00
|
|
|
f1: X, //~ ERROR `core::marker::Sized` is not implemented
|
2014-04-08 09:00:20 +00:00
|
|
|
f2: int,
|
|
|
|
}
|
2015-01-05 21:16:49 +00:00
|
|
|
struct S2<X: ?Sized> {
|
2014-04-08 09:00:20 +00:00
|
|
|
f: int,
|
2015-01-06 22:33:42 +00:00
|
|
|
g: X, //~ ERROR `core::marker::Sized` is not implemented
|
2014-04-08 09:00:20 +00:00
|
|
|
h: int,
|
|
|
|
}
|
2014-09-09 04:54:13 +00:00
|
|
|
struct S3 {
|
2015-01-06 22:33:42 +00:00
|
|
|
f: str, //~ ERROR `core::marker::Sized` is not implemented
|
2014-09-09 04:54:13 +00:00
|
|
|
g: [uint]
|
|
|
|
}
|
|
|
|
struct S4 {
|
2015-01-06 22:33:42 +00:00
|
|
|
f: str, //~ ERROR `core::marker::Sized` is not implemented
|
2014-09-09 04:54:13 +00:00
|
|
|
g: uint
|
|
|
|
}
|
2015-01-05 21:16:49 +00:00
|
|
|
enum E<X: ?Sized> {
|
2015-01-06 22:33:42 +00:00
|
|
|
V1(X, int), //~ERROR `core::marker::Sized` is not implemented
|
2014-11-08 01:23:33 +00:00
|
|
|
}
|
2015-01-05 21:16:49 +00:00
|
|
|
enum F<X: ?Sized> {
|
2015-01-06 22:33:42 +00:00
|
|
|
V2{f1: X, f: int}, //~ERROR `core::marker::Sized` is not implemented
|
2014-04-08 09:00:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|