glacier icon indicating copy to clipboard operation
glacier copied to clipboard

A big 'ol pile of ICE.

Results 37 glacier issues
Sort by recently updated
recently updated
newest added

Issue: https://github.com/rust-lang/rust/issues/84727 ```rust pub struct Color(pub T); pub struct Cell { foreground: Color, background: Color, } pub trait Over { fn over(self, bottom: Bottom) -> Output; } // Cell: Over...

Issue: https://github.com/rust-lang/rust/issues/94379 ```rust #![crate_type = "staticlib"] #![feature(core_intrinsics)] use std::intrinsics::rustc_peek; #[no_mangle] fn foo() -> i32 { let x = 0; rustc_peek(x) } ``` ``` === stdout === === stderr === warning:...

Issue: https://github.com/rust-lang/rust/issues/86720 ```rust #![crate_type = "staticlib"] #![feature(core_intrinsics)] use std::intrinsics::rustc_peek; #[no_mangle] fn foo() -> i32 { let x = 0; rustc_peek(x) } ``` ``` === stdout === === stderr === warning:...

Issue: https://github.com/rust-lang/rust/issues/112630 ```rust enum Foo { Bar(B), } fn main() { let _ = [0u32; Foo::Bar as usize]; } ``` ``` === stdout === === stderr === error[E0412]: cannot find...

Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.39 to 0.1.40. Release notes Sourced from tracing's releases. tracing 0.1.40 This release fixes a potential stack use-after-free in the Instrument::into_inner method. Only uses of this method...

dependencies

Issue: https://github.com/rust-lang/rust/issues/83056 ```rust struct WSAPROTOCOLCHAIN { ChainEntries: [DWORD; SetFileAttributesW as usize], } extern "C" { fn SetFileAttributesW() -> BOOL; } ``` ``` === stdout === === stderr === error[E0412]: cannot...

Issue: https://github.com/rust-lang/rust/issues/103708 ```rust #![feature(min_specialization)] trait Dance { fn foo(); } impl Dance for T { | ----------------------- parent `impl` is here ... 12 | fn foo() {} | ^^^^^^^^ cannot...