narpfel

Results 18 issues of 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...

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:...

I-compiletime
C-bug
needs-triage
-Znext-solver

Infra PR: https://github.com/compiler-explorer/infra/pull/1428

lang-python

### 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...

bug

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...

bug

### Summary When returning the result of a function `fn f(...) -> T` from a lambda `|| -> () { ... }`, removing the lambda’s return type annotation leads to...

C-bug
I-suggestion-causes-error
I-false-positive