]>
git.proxmox.com Git - rustc.git/blob - src/test/auxiliary/specialization_cross_crate_defaults.rs
1 // Copyright 2015 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.
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.
12 #![feature(specialization)]
14 // First, test only use of explicit `default` items:
17 fn foo(&self) -> bool
;
21 default fn foo(&self) -> bool { false }
27 fn foo(&self) -> bool { true }
30 // Next, test mixture of explicit `default` and provided methods:
33 fn bar(&self) -> i32 { 0 }
36 impl<T
> Bar
for T {}
// use the provided method
39 fn bar(&self) -> i32 { 1 }
41 impl<'a
> Bar
for &'a
str {}
43 impl<T
> Bar
for Vec
<T
> {
44 default fn bar(&self) -> i32 { 2 }
46 impl Bar
for Vec
<i32> {}
47 impl Bar
for Vec
<i64> {
48 fn bar(&self) -> i32 { 3 }