narpfel
narpfel
Annotating a `NamedTuple` with `@final` leads to a `RuntimeError` when trying to import the compiled module. `t.py`: ```python from typing import NamedTuple from typing import final @final class T(NamedTuple): x:...
In ariadne v0.3.0, any label would cause its span to be underlined, but also add blank lines to the output even when it had no message. In v0.4.0, the extraneous...
The current link 404’s.
I tried this code: https://github.com/bytecodealliance/wasmtime/ at commit https://github.com/bytecodealliance/wasmtime/commit/201b7b4ce4c5946cce8d5cd90ad2b64440864d8b. ```console git clone [email protected]:bytecodealliance/wasmtime.git cd wasmtime git checkout 201b7b4ce4c5946cce8d5cd90ad2b64440864d8b cd cranelift/codegen RUSTFLAGS="-Z next-solver" cargo build ``` I expected to see this happen:...
Infra PR: https://github.com/compiler-explorer/infra/pull/1428
### Describe the bug https://github.com/compiler-explorer/compiler-explorer/blob/1f799b904f5c406e48768f3c5d1b4488e5c31489/lib/base-compiler.ts#L1510-L1512 This discards all user-provided compiler options (including overrides), which makes it impossible to switch the edition for the macro expansion view. This is confusing because...
see https://crates.io/crates/clap CE PR: https://github.com/compiler-explorer/compiler-explorer/pull/7003
### Describe the bug GCC trunk seems to have changed its assembly output format. Mangled symbol names are now quoted: ```asm .LC0: .string "\n" "_Z6squarei": push rbx mov ebx, edi...
### Summary When returning the result of a function `fn f(...) -> T` from a lambda `|| -> () { ... }`, removing the lambda’s return type annotation leads to...