IonicMC

Results 9 comments of IonicMC

Hey everyone im going to make another RFC for this

> @ionicmc-rs Please do not open a separate RFC here but instead update this RFC in place if necessary. Also, it may be good to take the RFC a bit...

It is now updated, closing the new PR

> `feature(unsized_fn_params)` should get stabilized at some point But it is marked as internal though, why?

> > > `feature(unsized_fn_params)` should get stabilized at some point > > > > > > But it is marked as internal though, why? > > [rust-lang/rust#126830](https://github.com/rust-lang/rust/pull/126830) based on reasoning...

Well this issue needs to be addressed in some way, even if not like this

> alternatively, once we stabilize feature(trivial_bounds), the following would breakhttps://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=8384aee37ed6f14df660ab7b988c2b64: link doesn't work

> > Well this issue needs to be addressed in some way, even if not like this > > why? we can keep this somewhat suboptimal status quo which will...

look at this example: ```rust // crate a trait Other {} trait Trait { fn foo() where Self: Other; fn bar() where Self: Sized; } ``` this can actually be...