Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@knocte
Created January 25, 2021 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knocte/8b812a0996abad7d80a0262cb44b9b24 to your computer and use it in GitHub Desktop.
Save knocte/8b812a0996abad7d80a0262cb44b9b24 to your computer and use it in GitHub Desktop.
Code:
```
match foo with
| Bar (baz) -> ()
| _ ->
failwith "xxx"
```
Current results:
```
match foo with
| Bar (baz) -> ()
| _ -> failwith "xxx"
```
Expected results:
```
match foo with
| Bar baz -> ()
| _ -> failwith "xxx"
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment