Remove Ty prefix from Ty{Foreign|Param}

This commit is contained in:
varkor 2018-08-22 01:35:29 +01:00
parent 6f637da50c
commit 04fa5d3adb
68 changed files with 160 additions and 160 deletions

View file

@ -89,7 +89,7 @@ pub mod testtypes {
pub type FooNil = ();
pub type FooTuple = (u8, i8, bool);
// Skipping TyParam
// Skipping Param
// Skipping Infer

View file

@ -11,7 +11,7 @@
trait Arr0 {
fn arr0_secret(&self);
}
trait TyParam {
trait Param {
fn ty_param_secret(&self);
}
@ -19,7 +19,7 @@ mod m {
struct Priv;
impl ::Arr0 for [Priv; 0] { fn arr0_secret(&self) {} }
impl ::TyParam for Option<Priv> { fn ty_param_secret(&self) {} }
impl ::Param for Option<Priv> { fn ty_param_secret(&self) {} }
}
fn main() {