The inspection reports `Unknown field [...] in struct literal` ``` go package main type demo struct{} func main() { _ = demo{ field: 1, // error } } ``` This should be fixed by creating a field for the user if the struct is defined in the current project.