Micro Objective-C compiler
A simple operating system, processor and compiler for Nexys2
Extended Generator Generator
Dépôt pour les cours et TP de « Graphes et Recherche Opérationnelle » en seconde année à l'ENSEEIHT.
A simple raytracer made in Java.
A script to change URL in your browser
A syntax extension providing higher-order attributes to Rust.
issue commentrust-lang/rust
With beta or nightly this again prints 13 as expected.
comment created time in 3 months
issue openedrust-lang/rust
The following MVE prints 42 with rustc 1.45.0 but 13 with rustc 1.44.0
struct Foo {
x: i32,
}
fn main() {
let mut foo = Foo { x: 42 };
let x = &mut foo.x;
*x = 13;
let y = foo;
println!("{}", y.x); // -> 42; expected result: 13
}
Initially reported on Stack Overflow.
created time in 3 months
more