Line Markers: Detect recursive calls of companion invoke() member

#KT-21076 Fixed
This commit is contained in:
Alexey Sedunov
2017-11-17 20:12:30 +03:00
parent 169a22226f
commit bcdb46653c
4 changed files with 36 additions and 4 deletions
@@ -0,0 +1,5 @@
class Example(val dummy: Any?) {
companion object {
operator fun invoke() = <lineMarker>Example</lineMarker>()
}
}