## Reproduction steps Scala version: 2.13.10 ```scala import concurrent._, ExecutionContext.Implicits._, duration._ class C { def test(): Future[Int] = Future.unit .map { x => throw new NoSuchMethodError("test") 42 } } object Test extends App { val c = new C Await.result(c.test(), Duration.Inf) } ``` ## Problem Nothing in the Scaladoc tells me that https://github.com/scala/bug/issues/12150 There ought to be at least minimal guidance. Perhaps Akka docs have a model. The Scaladoc for Future should not say, "Don't use Future." In case that needed clarification.