glacier
glacier copied to clipboard
A big 'ol pile of ICE.
Bumps [h2](https://github.com/hyperium/h2) from 0.3.21 to 0.3.26. Release notes Sourced from h2's releases. v0.3.26 What's Changed Limit number of CONTINUATION frames for misbehaving connections. See https://seanmonstar.com/blog/hyper-http2-continuation-flood/ for more info. v0.3.25 What's...
Issue: https://github.com/rust-lang/rust/issues/105488 ```rust pub trait MyFnOnce { type Output; fn call_my_fn_once(self) -> Self::Output; } pub struct WrapFnOnce(F); impl D, D: MyFnOnce> MyFnOnce for WrapFnOnce { type Output = D::Output; fn...
Issue: https://github.com/rust-lang/rust/issues/112347 ```rust #![feature(unboxed_closures)] use std::future::Future; trait Trait { fn func(&self, _: &str); } impl Trait for T where for + Send + Sync, for>::Output: Future + Send, { fn...
Issue: https://github.com/rust-lang/rust/issues/111911 ```rust #![feature(adt_const_params)] fn foo() -> impl Sized {} | ^^^ | = note: `#[warn(dead_code)]` on by default warning: 2 warnings emitted ============== ```
Issue: https://github.com/rust-lang/rust/issues/111906 ```rust fn foo() -> impl Sized + 'a { let _: *mut &'a () = foo::(); | ----------- recursive call site | = help: a `loop` may express...
Issue: https://github.com/rust-lang/rust/issues/111906 ```rust fn foo() -> impl Sized { let _: () = foo::(); | ----------- recursive call site | = help: a `loop` may express intention better if this...
Issue: https://github.com/rust-lang/rust/issues/110726 ```rust fn foo /home/runner/work/glacier/glacier/ices/110726.rs:1:1 | 1 | fn foo() -> impl Sized + 'a { | -- this generic parameter must be used with a generic lifetime parameter...
Issue: https://github.com/rust-lang/rust/issues/108271 ```rust #![feature(generic_const_exprs)] #![allow(incomplete_features)] pub trait TraitWAssocConst { const A: dyn TraitWAssocConst; } fn bar() {} fn main() {} ``` ``` === stdout === === stderr === error[E0658]: associated...
Issue: https://github.com/rust-lang/rust/issues/108271 ```rust pub trait TraitWAssocConst { const A: T; } fn foo() {} fn main() {} ``` ``` === stdout === === stderr === error[E0658]: associated const equality is...
Bumps [mio](https://github.com/tokio-rs/mio) from 0.8.8 to 0.8.11. Changelog Sourced from mio's changelog. 0.8.11 Fix receiving IOCP events after deregistering a Windows named pipe (tokio-rs/mio#1760, backport pr: tokio-rs/mio#1761). 0.8.10 Added Solaris support...