Use property access: suppress for reserved words #KT-23775 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-05-07 17:48:36 +03:00
committed by Mikhail Glukhikh
parent 240b9fd97a
commit 4ee9db7a6c
10 changed files with 87 additions and 0 deletions
@@ -0,0 +1,11 @@
public class Foo {
private String typeof;
public String getTypeof() {
return typeof;
}
public void setTypeof(String typeof) {
this.typeof = typeof;
}
}