aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/gleam/type.gleam
blob: bbe75f64fe0061067cb3dddf67201cb60c285db5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub type Cat {
  Cat(name: String, cuteness: Int)
}

type User {
  LoggedIn(name: String)
  Guest
}

pub opaque type Counter {
  Counter(value: Int)
}

pub type Headers =
  List(#(String, String))

type Headers =
  List(#(String, String))