aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/VarWarning.java
blob: 4caf90f8cdd6e9193427f2b55ea2a0202e1ed5ed (plain)
1
2
3
4
5
6
7
8
9
10
import lombok.var;
public class VarWarning {
  public VarWarning() {
    super();
  }
  public void isOkay() {
    @var java.lang.String x = "Warning";
    x.toLowerCase();
  }
}