I'm putting together an "intro to bytecode" talk for jfokus in a couple of weeks and noticed an oddity that I don't have an explanation for. If i have a method like this:
public void someMethod() {
int local = 17;
local *= 18;
var name = "Iron Man";
name = "Tony Stark";
}