scala-dev icon indicating copy to clipboard operation
scala-dev copied to clipboard

issue inliner warning on recursive inline requests

Open lrytz opened this issue 10 years ago • 0 comments
trafficstars

If there's a cycle of invocations of @inline annotated methods, issue a warning for the callsite that is not inlined. Simplest example:

class C {
  @inline final def f: Int = 1 + f

lrytz avatar Aug 10 '15 12:08 lrytz