Skip to content

Commit

Permalink
Add a test
Browse files Browse the repository at this point in the history
  • Loading branch information
toku-sa-n committed Mar 16, 2024
1 parent 7187b33 commit fcc0baf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -863,13 +863,21 @@ data Link c1 c2 a c =
Link (Proxy b)
```

With an infix constructor
With an infix constructor without a `forall`

```haskell
data Foo =
Eq a => a :== a
```

With an infix constructor with a `forall`

```haskell
data Foo =
forall a. Eq a =>
a :== a
```

#### Derivings

With a single constructor
Expand Down

0 comments on commit fcc0baf

Please sign in to comment.