Skip to content

Commit

Permalink
Fix kotlin test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Jun 19, 2022
1 parent 999539d commit ad86965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
abstract internal class A {
abstract internal class A { // hello
open protected val v = ""
open suspend internal fun f(v: Any): Any = ""
lateinit public var lv: String
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
internal abstract class A {
internal abstract class A { // hello
protected open val v = ""
internal open suspend fun f(v: Any): Any = ""
public lateinit var lv: String
Expand Down

0 comments on commit ad86965

Please sign in to comment.