<@U3U3P3GCT> `catch (e: T)` catches everything (it...
# getting-started
d
@nekoinemo
catch (e: T)
catches everything (it's a bug). like @miha-x64 said, you could replace it with
catch (e: Exception)
and the test will still pass