Skip to content

Commit ae96d32

Browse files
authored
Changed test (#480)
1 parent 1fe5103 commit ae96d32

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
package com.saveourtool.save.chapter2
22

3-
class Example {
4-
@get:JvmName("getIsValid")
5-
val isValid = true
3+
class D {
4+
val x = 0
5+
6+
/**
7+
* @return
8+
*/
9+
fun bar(): Bar {
10+
val qux = 42
11+
return Bar(qux)
12+
}
613
}
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package test.smoke
22

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

0 commit comments

Comments
 (0)