Skip to content

Commit

Permalink
Changed test
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheshiriks committed Jan 24, 2023
1 parent 1fe5103 commit 7a93993
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
package com.saveourtool.save.chapter2

class Example {
@get:JvmName("getIsValid")
val isValid = true
class D {
val x = 0

/**
* @return
*/
fun bar(): Bar {
val qux = 42
return Bar(qux)
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package test.smoke

class example {
@get : JvmName("getIsValid")
val isValid = true
}
class D {val x = 0
fun bar(): Bar {val qux = 42; return Bar(qux)}
}

0 comments on commit 7a93993

Please sign in to comment.