Esteban Kuber
Esteban Kuber
Oh, yes. Thank you for bringing this to my attention! I need to do a new release after moving from tracking 1.72 to tracking a specific nightly. The code in...
This is a great idea and I'll keep it in mind. Thank you for taking the time to document it.
Another useful argument would be to _defer_ collection until a certain amount of time has passed, to avoid having a big flamegraph of your application starting up followed by a...
`Default::default()` is not currently `const` at all (but I quickly prototyped and it does work as expected). --- Would you have thoughts about changing from one one way of producing...
> Difficult! Need to determine if `impl Default` on the struct/enum is derived (hand-impls might not use the `Default::default()` for the field!), and also need to determine what `Default::default()` would...
> If however, you are proposing a new public-facing feature, such as a -C flag, then full team check-off is required. @rfcbot fcp merge
@rustbot second
It just occurred to me to try how the following fails, and it Just Works™️ 😄: ```rust pub struct Foo { pub baz: i32 = Self::X, } impl Foo {...
It seems like there is quite active development on the `const` evaluation side of things. Would it be possible to review (& land) this nightly feature to avoid frequent rebasing...
> Could you also squash all of those line 2-line commits into the original commit? I'll do a squash-rebase soon, once I've addressed all comments. Trying to keep things tidy...