create the following actionscript class:
public class Test {
private var variable:String;
public function test():void {
var variable:String;
this.variable = variable;
}
}
Notice the second 'variable' declaration inside method test is marked as a duplicate declaration, this is incorrect as it a locally scoped variable, note that goto declaration of this.variable and variable goto the correct definition.
applies to #7577 and #8243