Bug when using Encapsulate Feild on a struct.
if you've got:
struct foo {
object _feild;
public foo (object test){
_feild = test;
}
}
when you encapsulate feild, it will convert the useage of _feild in the constructor. This is fine, BUT because its a stuck, it will generate a compiler error, as you're trying to use a property before all members have been assigned.