```scala val a = 4 val b = 0 val d = scala.util.Try { a / b }.toOption val list = 42 :: d.get :: Nil ``` Quite contrived example which I made while testing the gitlab code quality integration. This doesn't flag for using Option.get.