-
**Is your feature request related to a problem? Please describe.**
When users are type something wrong, like `{{ produc }}`, Theme Check helps them. However, when users type something like `{{ produc…
-
**Describe the bug**
Unable to run tests in argocd-operator project with the newest go version
**To Reproduce**
Steps to reproduce the behavior:
1. Install go version go1.22.0 linux/amd64
2. C…
-
`(set (+ 1 2) 3)` currently produced an error only when lowering to programs, which is after type checking.
Found this while doing the refactoring.
-
### Description of Bug
Checker cannot deal with type alias.
### How to Reproduce
when checking
```
type MyType: String
def a: MyType := "my_string"
print(a)
```
We get `Unifying two…
-
Here is a minimal example:
``` python
schema = Schema({
'party': And(str, Use(str.lower), lambda s: s in ('alice', 'bob'))
})
```
This code works fine. However, the type checker reports …
-
having it as a separate option that can only be run in the cli sucks because it can't be used with the language server and therefore won't show its errors in your IDE
-
### Preflight Checklist
- [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
- [x] I agree to follow the [Code of Conduct]…
-
# Bug Report
### 🔎 Search Terms
* Tagged union
* Discriminated union
* Confusing/unclear error message
### 🕗 Version & Regression Information
This issue occurs on the oldest TS available…
-
The following code fails to infer the type of `x`, as well as the call to the inherent method `as_str`:
```rust
fn f(u: T) {
let x = u.into();
x.as_str();
}
```
rustc has no problem…
-
Consider the following program with holes (this is the smallest example I could come up with, so far):
```
import Data.Vect
A : Type
T : (n : Nat) -> Vect n A -> Type
rewrite_n : (0 prf …