June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -1,21 +1,21 @@
trait PrintType {
fn print_type();
fn print_type(&self);
}
impl PrintType for char {
fn print_type() {
fn print_type(&self) {
println!("char");
}
}
impl PrintType for f64 {
fn print_type() {
fn print_type(&self) {
println!("64-bit float");
}
}
fn prints_type_of_args<T,U>(arg1: T, arg2: U)
where T: PrintType
fn prints_type_of_args<T, U>(arg1: &T, arg2: &U)
where T: PrintType,
U: PrintType
{
arg1.print_type();
@ -23,6 +23,6 @@ fn prints_type_of_args<T,U>(arg1: T, arg2: U)
}
fn main() {
prints_type_of_args('a', 2.0);
prints_type_of_args('a', 'b');
prints_type_of_args(&'a', &2.0);
prints_type_of_args(&'a', &'b');
}