[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
@@ -0,0 +1,19 @@
|
||||
// KT-47455
|
||||
|
||||
// FILE: ParentClass.java
|
||||
public abstract class ParentClass {
|
||||
int id;
|
||||
}
|
||||
|
||||
// FILE: ChildClass.java
|
||||
import lombok.*;
|
||||
|
||||
@RequiredArgsConstructor
|
||||
public class ChildClass extends ParentClass {}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
fun box(): String {
|
||||
ChildClass::class
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user