import java.lang.Integer; public class PostInc { m() { var i = 0; i++; return i; } m2() { var i = 0; var j = i++; return j; } }