fix tests by adding missing 'init' keywords to testdata
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// PSI_ELEMENT: org.jetbrains.kotlin.psi.JetNamedFunction
|
||||
// OPTIONS: usages
|
||||
enum class E {
|
||||
{
|
||||
init {
|
||||
foo(1)
|
||||
}
|
||||
|
||||
@@ -9,14 +9,14 @@ enum class E {
|
||||
|
||||
O
|
||||
A {
|
||||
{
|
||||
init {
|
||||
foo(1)
|
||||
}
|
||||
|
||||
override fun foo(n: Int): Int = n + 1
|
||||
}
|
||||
B {
|
||||
{
|
||||
init {
|
||||
foo(1)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user