2014-08-11 17:12:01 -07: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-04-17 22:12:20 -07:00
|
|
|
trait Trait {}
|
2014-08-11 17:12:01 -07:00
|
|
|
|
|
|
|
struct Foo<T:Trait> {
|
|
|
|
x: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Bar<T:Trait> {
|
2015-01-08 21:54:35 +11:00
|
|
|
ABar(isize),
|
2014-08-11 17:12:01 -07:00
|
|
|
BBar(T),
|
2015-01-08 22:02:42 +11:00
|
|
|
CBar(usize),
|
2014-08-11 17:12:01 -07:00
|
|
|
}
|
|
|
|
|
2014-09-12 10:45:39 -04:00
|
|
|
impl<T> Foo<T> {
|
|
|
|
//~^ ERROR the trait `Trait` is not implemented
|
2014-08-11 17:12:01 -07:00
|
|
|
fn uhoh() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz {
|
2015-06-12 01:44:42 +09:00
|
|
|
a: Foo<isize>, //~ ERROR not implemented
|
2014-08-11 17:12:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
enum Boo {
|
2015-06-12 01:44:42 +09:00
|
|
|
Quux(Bar<usize>), //~ ERROR not implemented
|
2014-08-11 17:12:01 -07:00
|
|
|
}
|
|
|
|
|
2014-12-26 15:37:56 -05:00
|
|
|
struct Badness<U> {
|
2015-06-12 01:44:42 +09:00
|
|
|
b: Foo<U>, //~ ERROR not implemented
|
2014-08-11 17:12:01 -07:00
|
|
|
}
|
|
|
|
|
2014-12-26 15:37:56 -05:00
|
|
|
enum MoreBadness<V> {
|
2015-06-12 01:44:42 +09:00
|
|
|
EvenMoreBadness(Bar<V>), //~ ERROR not implemented
|
2014-08-11 17:12:01 -07:00
|
|
|
}
|
|
|
|
|
2015-06-12 21:09:17 +09:00
|
|
|
struct TupleLike(
|
|
|
|
Foo<i32>, //~ ERROR not implemented
|
|
|
|
);
|
|
|
|
|
|
|
|
enum Enum {
|
2015-06-15 17:30:34 -04:00
|
|
|
DictionaryLike { field: Bar<u8> }, //~ ERROR not implemented
|
2015-06-12 21:09:17 +09:00
|
|
|
}
|
|
|
|
|
2014-08-11 17:12:01 -07:00
|
|
|
fn main() {
|
|
|
|
}
|