diff --git a/idea/testData/codeInsight/lineMarker/OverrideIconForOverloadMethodBug.kt b/idea/testData/codeInsight/lineMarker/OverrideIconForOverloadMethodBug.kt index eae09271244..a54dbdb4d5c 100644 --- a/idea/testData/codeInsight/lineMarker/OverrideIconForOverloadMethodBug.kt +++ b/idea/testData/codeInsight/lineMarker/OverrideIconForOverloadMethodBug.kt @@ -7,8 +7,7 @@ public trait SkipSupportWithDefaults : SkipSu // TODO: should be "Is overriden in SkipSupportImpl" override fun skip(why: String) {} - // TODO: fix bug with 'null' marker - override fun skip() { + override fun skip() { skip("not given") } }