]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unsized.rs
auto merge of #13689 : alexcrichton/rust/ignore-tcp-connect-freebsd, r=brson
[rust.git] / src / test / run-pass / unsized.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test syntax checks for `type` keyword.
12
13 trait T1 for type {}
14 pub trait T2 for type {}
15 trait T3<X: T1> for type: T2 {}
16 trait T4<type X> {}
17 trait T5<type X, Y> {}
18 trait T6<Y, type X> {}
19 trait T7<type X, type Y> {}
20 trait T8<type X: T2> {}
21 struct S1<type X>;
22 enum E<type X> {}
23 impl <type X> T1 for S1<X> {}
24 fn f<type X>() {}
25
26 pub fn main() {
27 }