Open
Description
Here's a piece of code to reproduce:
let a = None;
let thing =
switch (a) {
| None => "error"
| Some(fahrenheit) => "Unreasonably long string string string stringgggggggggggggg"
};
Expected:
let a = None;
let thing =
switch (a) {
| None => "error"
| Some(fahrenheit) =>
"Unreasonably long string string string stringgggggggggggggg"
};
Metadata
Metadata
Assignees
Labels
No labels