You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 15, 2023. It is now read-only.
module Automatic = {
@react.component
let make = () => {
<> </>
}
}
produces:
module Automatic = {
type props = {}
@react.component
let make = (_: props) => {
React.jsx(React.jsxFragment, {children: {}})
}
let make = {
let \"OptionalKeyType$Automatic" = props => make(props)
\"OptionalKeyType$Automatic"
}
}
which gives a type errow (without location information):
We've found a bug for you!
/Users/cristianocalcagno/GitHub/rescript-vscode/analysis/tests/src/Completion.res
Empty record literal {} should be type annotated or used in a record context.