Remove Ty prefix from Ty{Foreign|Param}
This commit is contained in:
parent
6f637da50c
commit
04fa5d3adb
68 changed files with 160 additions and 160 deletions
|
|
@ -89,7 +89,7 @@ pub mod testtypes {
|
|||
pub type FooNil = ();
|
||||
pub type FooTuple = (u8, i8, bool);
|
||||
|
||||
// Skipping TyParam
|
||||
// Skipping Param
|
||||
|
||||
// Skipping Infer
|
||||
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue