We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37175b commit 00f8112Copy full SHA for 00f8112
docs/_docs/reference/metaprogramming/inline.md
@@ -105,7 +105,8 @@ would typecheck.
105
106
Inline methods can be recursive. For instance, when called with a constant
107
exponent `n`, the following method for `power` will be implemented by
108
-straight inline code without any loop or recursion.
+straight inline code without any loop or recursion. It is worth to note that the number of successive
109
+inlines is limited and can be modified by the compiler setting `-Xmax-inlines`.
110
111
```scala
112
inline def power(x: Double, n: Int): Double =
0 commit comments