···1414 ┌─ /src/parse/error.gleam:3:5
1515 │
16163 │ name: String,
1717- │ ^^^^ I was not expecting this
1717+ │ ^^^^^^^^^^^^ I was not expecting this
18181919Each custom type variant must have a constructor:
2020
···1414 ┌─ /src/parse/error.gleam:3:5
1515 │
16163 │ name: "Test User",
1717- │ ^^^^ I was not expecting this
1818-1919-Each custom type variant must have a constructor:
1717+ │ ^^^^ I'm expecting a type name here
20182121-type User {
2222- User(
2323- name: Type,
2424- )
2525-}
1919+Hint: Type names start with a uppercase letter, and can contain a-z, A-Z,
2020+or 0-9.