[255] Bug in introduce parameter
Given this code:
class OtherTest
{
public string test;
public
OtherTest()
{
test = "";
}
}
If we do an introduce parameter for "" and use the name test, the
resulting code is:
class OtherTest
{
public string test;
public
OtherTest(string test)
{
test = test;
}
}
Which is not equivalent (note the lack of this in the left hand side).
Regards,
Pablo
--
--
Content to follow when we lead the way.
-- Alexander Pope (1688-1744)
-- The Iliad of Homer, Book x, Line 141
Pablo Montilla
www.odyssey.com.uy
Please sign in to leave a comment.
Sorry, didn't see it. How far off is the 3.0 version? Its not such a
critical bug, but I thought it would be fixed in one of the eap builds...
Regards,
Pablo
--
--
Fools are certain, but wise men hesitate.
Pablo Montilla
www.odyssey.com.uy