1 This document describes all code optimalizations performed by Mono C# compiler
2 when optimalizations are enabled via /optimize+ option.
6 * Instance field initializer to default value
7 ---------------------------------------------
18 int i = 0; // Field will not be redundantly assigned
19 int i2 = new int (); // This will be also completely optimized out
21 E e = E.Test; // Even this will go out.