[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
+27
@@ -0,0 +1,27 @@
|
||||
// FILE: GetterTest.java
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.Getter;
|
||||
|
||||
public class GetterTest {
|
||||
@Getter private boolean primitiveBoolean;
|
||||
|
||||
void test() {
|
||||
getPrimitiveBoolean();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
fun box(): String {
|
||||
val obj = GetterTest()
|
||||
|
||||
obj.primitiveBoolean
|
||||
obj.getPrimitiveBoolean()
|
||||
return "OK"
|
||||
}
|
||||
|
||||
// FILE: lombok.config
|
||||
lombok.getter.noIsPrefix=true
|
||||
Reference in New Issue
Block a user