-
I was trying to `load()` `paths.bzl` from skylib:
```console
$ go install go.starlark.net/cmd/starlark@latest
$ starlark paths.bzl
paths.bzl:309:9: undefined: struct
```
-
If I define a struct derived from the base struct `rfl::Field,` how can I implement the parser for the new struct?
-
-
unlike functions and data
-
**Describe the bug**
When I try to use a struct, it doesn't seem to work and gives an error. I took a look at the implementation for Struct, and though it seems partially implemented I saw that there…
-
On https://github.com/canonical/identity-platform-login-ui/blob/main/pkg/kratos/service.go#L585 we have a comment about refactoring once we update the sdk version. Is that still valid? S…
-
ZII is perfect for some tasks, but sometimes I know that given struct is always initialized. So, adding new fields to a struct definition adds possibility of breaking this guarantee as uninitialized f…
-
Rust sometimes treats structs as [covariant or contravariant](https://doc.rust-lang.org/reference/subtyping.html) in their generic parameters. VeriFast currently does not yet check that the `.own` and…
-
**V doctor:**
```
V full version: V 0.4.8 5c65e58.9300982
OS: windows, Microsoft Windows 11 Pro v22631 64-bit
Processor: 24 cpus, 64bit, little endian,
get_current_dir: D:\vbug
vexe: C:\v\v.exe
v…
-
The following valid Go code fails in gno:
```go
package main
import "fmt"
type node struct {
parent *node
child []*node
key string
}
func main() {
root := &node{key: "root"}
…