[kotlin] Extend test data for better coverage

#KTIJ-24196

GitOrigin-RevId: a8c07a651729eea2b07c2c2fcb1e64779cf0229b
This commit is contained in:
Vladimir Dolzhenko
2023-01-23 13:36:28 +00:00
committed by intellij-monorepo-bot
parent 12f2a727a3
commit ffcdd05430
3 changed files with 5 additions and 3 deletions
@@ -1,4 +1,4 @@
private var FOO: Int = 0
object Foo {
private val _Foo: String = ""
@@ -1,14 +1,14 @@
<problems>
<problem>
<file>test.kt</file>
<line>5</line>
<line>7</line>
<module>light_idea_test_case</module>
<entry_point TYPE="file" FQNAME="temp:///src/test.kt" />
<description>Object or top-level property name &lt;code&gt;_FOO&lt;/code&gt; should not start with an underscore #loc</description>
</problem>
<problem>
<file>test.kt</file>
<line>23</line>
<line>25</line>
<module>light_idea_test_case</module>
<entry_point TYPE="file" FQNAME="temp:///src/test.kt" />
<description>Object or top-level property name &lt;code&gt;_FOO&lt;/code&gt; should not start with an underscore #loc</description>
@@ -2,6 +2,8 @@ val Foo: String = ""
var FOO_BAR: Int = 0
private var FOO: Int = 0
var _FOO: Int = 0
const val THREE = 3