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
-- NAMING ERROR -------------------------------------------------- src/File2.elm
I cannot find a `Foo` variant:
7| Foo
^^^
These names seem close though:
Ok
EQ
Err
GT
Hint: Read <https://elm-lang.org/0.19.1/imports> to see how `import`
declarations work in Elm.
while it could give you something like
-- IMPORT ERROR -------------------------------------------------- src/File2.elm
You're trying to import the constructors of the `CustomType` type:
3| import File1 exposing (CustomType(..))
^^^^
The module File1 doesn't expose them though.
The text was updated successfully, but these errors were encountered:
This will currently get you:
while it could give you something like
The text was updated successfully, but these errors were encountered: