You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package com.example;
import lombok.AllArgsConstructor;
import lombok.Data;
public class Main {
public void test() {
Person p = new Person(10, "abc");
System.out.println(p.getAge() + p.getName());
System.out.println(p.getAge() + p.getName());
System.out.println(p.getAge() + p.getName());
}
@Data
@AllArgsConstructor
class Person {
private Integer age;
private String name;
}
}
you will get seven errors and two warnings
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
you will get seven errors and two warnings
The text was updated successfully, but these errors were encountered: