1
Fork 0

librustc: Change self as a type to Self everywhere. r=brson

This commit is contained in:
Patrick Walton 2013-01-30 19:42:06 -08:00
parent 63b2b9c4a8
commit 366812a5c3
41 changed files with 87 additions and 90 deletions

View file

@ -10,7 +10,7 @@
use cmp::Eq;
pub trait MyNum : Add<self,self> Sub<self,self> Mul<self,self> Eq {
pub trait MyNum : Add<Self,Self> Sub<Self,Self> Mul<Self,Self> Eq {
}
pub struct MyInt {