Files
kotlin-fork/plugins/lombok/testData/compile/with.kt
T
Dmitriy Novozhilov c2bf68c9d3 [Lombok] Reorganize module structure of Lombok compiler plugin
Also rename its jar to `kotlin-lombok-compiler-plugin`

^KT-52468 Fixed
2022-06-07 14:12:19 +00:00

29 lines
511 B
Kotlin
Vendored

//FILE: WithExample.java
import lombok.*;
@AllArgsConstructor
@NoArgsConstructor
public class WithExample {
@Getter @With private int age = 10;
@Getter @With private String name;
public static WithExample test() {
return new WithExample().withAge(16).withName("fooo");
}
}
//FILE: test.kt
class Test {
fun run() {
val obj: WithExample = WithExample().withAge(16).withName("fooo")
assertEquals(obj.getName(), "fooo")
assertEquals(obj.age, 16)
}
}