https://issues.dlang.org/show_bug.cgi?id=23101

--- Comment #3 from João Lourenço <[email protected]> ---
Sorry, correction of the bug report example:
```
SumType!(int, string) st;
st.match!(
  function int*(string _) => assert(0),
  function int*(ref int i) => &i,
);
```

--

Reply via email to